无数字的多行方程

无数字的多行方程

我正在尝试创建一个没有任何编号的多行方程,甚至最后一个方程也没有。

\begin{align}
a = x \nonumber \\
b = y
\end{align}

但是,这会在最后一行产生一个行号,这是不希望发生的。

我也尝试过equationequation*环境,但没有成功。

谢谢。

PS 渲染 LaTeX 代码的标记是什么?似乎无法在帮助页面中找到它?

答案1

怎么样:

\documentclass{article}
\usepackage{amsmath} % for the "align" and "align*" environments
\begin{document}
\begin{align*} % the "starred" equation environments produce no equation numbers
a &= b\\  % if no alignment is needed, use the gather* instead of the align* env.
  &= c
\end{align*}
\end{document}

如果您确实使用无星号的版本,请记住\nonumber只对一行进行操作,因此要完全省略数字,必须在每一行都输入\nonumber(或)。\notag

相关内容