答案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}