如何仅用一个数字对整个数组环境进行编号

如何仅用一个数字对整个数组环境进行编号

可能重复:
将几个方程式编号在一起

我目前正在使用对齐环境来编写方程组。代码的形式如下:

\begin{align*}\label{myEnv}
%equation 1 here
%equation 2 here
%equation 3 here
\end{align*}

我想知道如何仅使用一个数字来为该环境编号。现在,如果我改回align*align环境中的每一行都会得到三个不同的数字。

我知道它确实\label{myEnv}返回了正确的数字,但我不知道如何在实际的 LaTeX 文档中显示它。

答案1

split这可以通过align 内部的环境来完成environment

\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
    \begin{align}\label{myEnv}
    \begin{split}
        equation 1 here \\
        equation 2 here \\
        equation 3 here 
    \end{split}
    \end{align}
\ref{myEnv} contains one number
\end{document}

答案2

您可以使用:

\documentclass{minimal}
\usepackage{amsmath}
\begin{document}

For alignment use this:
        \begin{align}\label{myEnv}
        \begin{split}
            a &= b + c + d \\
            a &= b + c  \\
            av &= b + c
        \end{split}
        \end{align}
    \ref{myEnv} contains one number

For centered use this:
        \begin{align}\label{myEnv1}
        \begin{gathered}
            a = b + c + d \\
            a = b + c  \\
            av = b + c
        \end{gathered}
        \end{align}
    \ref{myEnv1} contains one number
    \end{document}

相关内容