我在对齐环境中具有以下内容
\begin{align*}
{2 + 2 - 1}\choose{2 - 1} &=& {2 + 2 - 1}\choose{2} \\
{3}\choose{1} &=& {3}\choose{2} \\
3 &=& 3
\end{align*}
但是在 = 符号的右侧有很多空格。
是否有一种解决方法可以消除空白?
答案1
AMS 比对都使用语法编写,其中比对点位于关系的左侧(与已弃用的 不同eqnarray
),因此&=
不是&=&
。二项式系数的 LaTeX 语法是\binom{a}{b}
注意,这\choose
是一个普通的 tex 宏,如果您使用它,则不应在 LaTeX 中使用amsmath
警告
Package amsmath Warning: Foreign command \atopwithdelims;
(amsmath) \frac or \genfrac should be used instead
(amsmath) on input line 11.
此外,如果您使用它,语法就{2+2-1 \choose 2}
不是这样{2+2-1}\choose{2}
,否则它将拾取示例之前的所有\choose
内容=
。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
\binom{2 + 2 - 1}{2 - 1} &= \binom{2 + 2 - 1}{2} \\
\binom{3}{1} &= \binom{3}{2} \\
3 &= 3
\end{align*}
\end{document}