如何改变 \frac 的水平对齐方式?

如何改变 \frac 的水平对齐方式?

打字时\frac{W+W^*}{2},分母看起来似乎位置不对。有没有办法纠正这个问题,比如把放在2下面+(不使用任意负间距)?

答案1

我提出了五种可能性:

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
% no adjustment
\frac{W+W^{*}}{2}=
% push the denominator left by the width of the asterisk
\frac{W+W^{*}}{2\hphantom{^{*}}}=
% make the asterisk protrude to the right (and add a correction)
\frac{W+W^{\mathrlap{*}}}{2}\,=
% push the denominator a bit left
\frac{W+W^{*}}{\!2}=
% change the order
\frac{W^{*}+W}{2}
\]
\end{document}

在此处输入图片描述

在这种特殊情况下,可能中间的一个是最好的。

答案2

使用\hphantom

\documentclass{article}
\begin{document}
  \[
  \frac{W+W^*}{2\hphantom{^{*}}}
  \]
\end{document}

在此处输入图片描述

这个想法是利用 是^{*}中的额外参数这一事实。在 分母 之后W + W添加一个额外的水平空间可以将带到 的中心^{*}22W + W

相关内容