多个方程的标签

多个方程的标签

下面的代码给出了两个例子:前者对两个带有冗余符号“{”的方程式只给出了一个标签,而后者却给出了三个标签(应该是两个?)。

是否可以为多个方程式只提供一个标签而不使用符号“{”?

\begin{eqnarray}
  \begin{cases}
A &\sim a,\\
B &\sim b,\\
  \end{cases}
\end{eqnarray}

\begin{align}\label{General}
A &\sim a,\\
B &\sim b,\\
\end{align}

在此处输入图片描述

我想要的输出如下; 在此处输入图片描述

答案1

是的,通过使用环境是可能的split,标签是:

\begin{equation}\label{General}
\begin{split}
A &\sim a,\\
B &\sim b,
\end{split}
\end{equation}

答案2

您可以使用嵌套在方程式中的对齐环境:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{equation}
    \begin{aligned}
        A &\sim a,\\
        B &\sim b,
    \end{aligned}
\end{equation}
\end{document}

相关内容