关于下标字体大小的问题

关于下标字体大小的问题

我正在研究笔记中的公式。这是我的代码的一部分,

\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}

在此处输入图片描述


不过,最好使用大写的 chi$X$或小写的 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}}

这会使下标变得更小。

相关内容