对齐等式中的等号

对齐等式中的等号

到目前为止,我使用环境align。因为我想给每个方程式一个特定的参考编号,所以我想使用环境equation。所以我尝试了这个,它适用于align

\begin{equation}
x &=2 \\
&=1+1
\end{equation}

但这会引发错误。为什么不起作用?

当然,我也搜索过类似的问题,但是没有找到可以解决此问题的具体问题。(代码总是非常复杂;没有最小的例子

答案1

好的,答案很简单,评论中已经给出了,但既然你坚持要问最小工作示例(粗体:-),这里是:

\documentclass[a4paper]{article}
\usepackage{amsmath}

\begin{document}
Text before the equation.
\begin{equation}
    \begin{split}
        x &= 2 \\
          &= 1+1
    \end{split}
    \label{eq:x=2=1+1}
\end{equation}
Text after equation~\eqref{eq:x=2=1+1}, with a reference to the equation itself.
\end{document}

相关内容