
答え1
答え2
さて、問題は主に、下線付きの小文字 q の形状により、第 2 レベルの下付き文字 1 とほぼ同じ高さに見えることです。第 2 レベルの下付き文字 1 の底部を見ると、q の「ループ」の底部よりも明らかに低くなっています。
したがって、下付き文字をどれだけ下げるかを変更する必要があります。\fontdim
適切な長さを設定することでこれを制御できます。これがどのように機能するかについては、この投稿で。
この方法を説明するために、次のコードを参照してください。
\documentclass{article}
\makeatletter %%% These three lines are to ensure the math fonts
\check@mathfonts %%% are configured prior the call of \fontdim. Include
\makeatother %%% if you run into an error about \nullfont.
\begin{document}
\[ x^{q_{1_1}} \] %% Standard format. For reference.
\fontdimen16\scriptfont2=3pt % <--- This is the line that sets the height.
\[ x^{q_{1_1}} \] %% Same expression, for comparison.
\end{document}
出力 (上の行はオリジナル、下の行は下付き文字の高さを増やしたもの):
美的に満足できるものを見つけるには、パラメータをいろいろ試してみる必要があります。