關於下標字體大小的問題

關於下標字體大小的問題

我正在研究筆記中的公式。這是我的程式碼的一部分,

\begin{equation*}
         \phi(x) := \left\{
                    \begin{aligned} 
                         &\chi_{K_n}(\bar{x})\cdot\frac{\psi_n(x)}{\tilde{\psi}_n(\bar{x})}, & \text{ if } \bar{x}\in K_n \\
                         &0                                                                  & \text{ otherwise}     
                    \end{aligned}
                    \right.
     \end{equation*}

問題是我需要 \chi_{K_n} 中的下標的下標,但是 \chi 是小寫字母,K 是大寫字母。右邊有一個小下標n,看起來就像\chi乘以K_n,有沒有辦法讓\chi變大或讓下標K變小?謝謝。

順便問一下,我可以像在 mathstakexchange 中那樣在這裡發布數學公式嗎?

答案1

就數學語法而言,這並不是很好,但您可以將其設置在下面的一層。比如說,再增加一個下標指令。我稍微縮小了字距,因為它在我眼中看起來太寬了。

% arara: pdflatex

\documentclass{article}
\usepackage{mathtools}

\begin{document}
\begin{equation*}
    \phi(x) \coloneqq
    \begin{dcases*} % only write the "d" if you want the fraction in display style
        \chi_{_{K_n}}\mkern-2mu(\bar{x})\cdot\frac{\psi_n(x)}{\tilde{\psi}_n(\bar{x})}, & if $\bar{x}\in K_n$ \\
        0                                                                     & otherwise     
    \end{dcases*}
\end{equation*} 
\end{document}

在此輸入影像描述


$X$但是,如果您使用大寫的 chi或小寫的 k會更好。


更新:

我收集了所有提到的版本並製作了螢幕截圖。您必須自己決定。

\begin{equation*}
\chi_{K_n} % your approach
\chi{_{_{K_n}}} % my approach
\mathrm{X}_{K_n} % upper-case chi
\chi^{}_{k_n} % lower-case k
\chi{\scriptstyle_{K_n}} % honeste_vivere's approach
\chi^{}_{K_{n}} % egreg in first comment
\chi_{\scriptscriptstyle K_{n}} % egreg in second comment
\end{equation*}

在此輸入影像描述

答案2

這裡有一些降低下標的方法。在我看來,使下標的大小適合二級下標並不是一個選擇。

我最喜歡的是上排的第二或第三個;大的cases使用第四種方法(與\shiftdown)。

\documentclass{article}
\usepackage{mathtools}

\newcommand{\shiftdown}{\vrule height 1.8ex width 0pt}

\begin{document}
\begin{equation*}
\chi_{K_n} \chi^{}_{K_n} \chi^{\mathstrut}_{K_n} \chi_{\shiftdown K_n}
\end{equation*}

\begin{equation*}
\phi(x) \coloneqq
\begin{dcases*}
\chi_{\shiftdown K_n}(\bar{x})\frac{\psi_n(x)}{\tilde{\psi}_n(\bar{x})},
   & if $\bar{x}\in K_n$ \\
0,
   & otherwise
\end{dcases*}
\end{equation*}

\end{document}

在此輸入影像描述

答案3

您可以使用連續下標的大括號來完成此操作。

\sum_1           \\
\sum_{_1}        \\
\sum_{_{_1}}     \\
\sum_{_{_{_1}}}  \\

在此輸入影像描述

答案4

是的,在下標中您可以使用類似\scriptstyle指令來變更下標或上標的字體大小。這是一個例子:

\chi_{K}

是您之前的做法,但現在嘗試:

\chi{\scriptstyle_{K}}

這應該會使下標變小。

相關內容