下付き文字のフォントサイズに関する質問

下付き文字のフォントサイズに関する質問

私はノートの数式に取り組んでいます。ここに私のコードの一部を示します。

\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

これは数学的な構文に関してはあまり良い方法ではありませんが、1 つ下のレイヤーに設定することができます。つまり、下付き文字コマンドをもう 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

下付き文字を小さくする方法をいくつか示します。私の意見では、下付き文字を第 2 レベルの適切なサイズにすることは選択肢ではありません。

私が好むのは、上の行の 2 番目か 3 番目の方法です。大きなものはcases4 番目の方法 ( を使用\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}}

これにより、下付き文字が小さくなるはずです。

関連情報