答案1
答案2
好的,所以问题主要在于小写字母 q 的形状,带有下降部,使得它看起来几乎与第二级下标 1 齐平。如果你看一下第二级下标 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}
输出(上面一行是原始的,下面一行是增加了下标高度的):
您必须尝试各种参数来找到让您在审美上感到满意的参数。