我想写一些类似以下形式的东西:
\begin{align}
c_1 & = 1 \\
c_2 & = 1 + 2 \\
c_3 & = 1 + 2 + 3 \\
& \; \; \vdots
\end{align}
我希望前三个方程有“正常”的方程编号,但最后一行\vdots
涉及没有方程编号。这可能吗?
答案1
由于您正在加载amsmath
,因此您可以使用\notag
(不amsmath
带\nonumber
)来抑制给定行的编号:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
c_1 &= 1 \\
c_2 &= 1 + 2 \\
c_3 &= 1 + 2 + 3 \\
&\;\;\vdots \notag
\end{align}
\end{document}