如何使子方程居中并保持子编号

如何使子方程居中并保持子编号

我试图得到一个包含 3 行的子方程,以使所有方程彼此水平居中。

现在我有:

\begin{subequations}\label{eq:propArea}
    \begin{alignat}{2}
        A &= first~special~subequation \\
        B &= equation~much~bigger~then~others~above~and~below \\
        C &= smaller~equation
    \end{alignat}
\end{subequations}

在此处输入图片描述

正如您所见,方程式与标记对齐&

使用gathered环境可得到:

\begin{equation}\label{eq:propArea}
    \begin{gathered}
        A = first~special~subequation \\
        B = equation~much~bigger~then~others~above~and~below \\
        C = smaller~equation
    \end{gathered}
\end{equation}

在此处输入图片描述

正如您所看到的,它将方程式与其中心对齐,但我失去了非常有用的子编号......

我怎样才能得到这两样东西?

答案1

\begin{subequations}\label{eq:propArea}
    \begin{gather}
        A = first~special~subequation \\
        B = equation~much~bigger~then~others~above~and~below \\
        C = smaller~equation
    \end{gather}
\end{subequation}

equation环境只有一个数字(标签),gathered是为而设计的equation,同时gather用于多行方程,其中每行都编号(标记)。

相关内容