在对齐环境中对方程式进行编号和标记(无法切换到对齐)

在对齐环境中对方程式进行编号和标记(无法切换到对齐)

我有以下内容

\begin{equation*}
A=\left\{
B|~\qquad \begin{aligned}
&C\\
&D\\
&E
\end{aligned}
\right\}
\end{equation*}

在此处输入图片描述

我想只对与“E”对应的行进行编号和标记。我该怎么做?

答案1

在此处输入图片描述

withempheq包很简单:

\begin{empheq}[left={A=\empheqlbrace}, right=\empheqrbrace]{align}
    &\quad  C   \notag  \\  
B|  &\quad  D   \notag  \\
    &\quad  E   \label{eq:important}
\end{empheq}

附录: 使用一些技巧也可以达到要求在方程内有方程数...

在此处输入图片描述

\refstepcounter{equation}\label{eq:important}
\begin{empheq}[left={A=\empheqlbrace}, right=\empheqrbrace]{align}\label{eq:important}
    &\qquad C   \notag  \\  
B|  &\qquad D   \notag  \\
    &\qquad E   \quad   \eqref{eq:important}\notag
\end{empheq}

相关内容