아래 첨자 글꼴 크기에 대한 질문

아래 첨자 글꼴 크기에 대한 질문

저는 노트에서 수식을 작성하고 있습니다. 여기 내 코드의 일부입니다.

\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

아래 첨자를 낮추는 몇 가지 방법이 있습니다. 제 생각에는 두 번째 수준에 적합한 크기로 아래 첨자를 만드는 것은 선택 사항이 아닙니다.

내가 선호하는 것은 위쪽 줄에서 두 번째나 세 번째입니다. big은 cases네 번째 방법(with \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}}

이렇게 하면 아래첨자가 더 작아집니다.

관련 정보