我想知道是否有一種方法可以創建這樣的方程,其中“下標”放置在下面而不是右下角。我還希望“下標”與上面的數字居中對齊。
答案1
一個簡單的實作是使用amsmath
and \underset
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
y=\underset{(20)}{35}\cdot x + \underset{(3)}{39}\cdot z + \underset{(11)}{3859}
\]
\end{document}
但是,您會看到第一對可能太寬,因為考慮了下標寬度。如果下標永遠不會比數字寬很多,您也可以使用\mathclap
from mathtools
;使用新指令,語法也更方便。
\documentclass{article}
\usepackage{mathtools}% also loads amsmath
\newcommand{\twonums}[2]{\underset{\mathclap{(#2)}}{#1}}
\begin{document}
\[
y=\twonums{35}{20}\cdot x + \twonums{39}{3}\cdot z + \twonums{3859}{11}
\]
\end{document}