在对齐环境中,如何仅对其中一行进行编号?

在对齐环境中,如何仅对其中一行进行编号?

可能重复:
使用对齐方式对方程式进行选择性编号

我想知道,在对齐环境中,如何仅对多行中的特定行进行编号。

例如,我不想对方程式的所有步骤进行编号,而只对最终结果进行编号。

答案1

您可以使用\notag命令

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
x=5\notag\\
y=2\notag\\
z=1
\end{align}
\end{document}

在此处输入图片描述

答案2

您可以使用\notag\nonumber来删除数字。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
ax^2+bx+c
        & = 0\nonumber\\
ax^2+bx
        & = -c\nonumber\\
ax^2+bx
        & = -c
\end{align}
\end{document}

相关内容