我怎样才能标记一行中的每个方程式?

我怎样才能标记一行中的每个方程式?

我使用案例,并且倾向于将每个方程标记为一行,例如,在第一种情况下,我想将每个方程标记为 (1) 和 (2),在第二种情况下,我想将每个方程标记为 (3) 和 (4)。我该怎么做?任何帮助都值得感激。

在此处输入图片描述

Lấy $ U,V \in \mathcal{T} $. Khi đó 
        $\begin{cases}
            U \cap X \in \mathcal{T}_1 \\
            U \cap Y \in \mathcal{T}_2 
        \end{cases}$ và
        $ \begin{cases}
        V \cap X \in \mathcal{T}_1  \\
        V \cap Y \in \mathcal{T}_2 
        \end{cases} $

答案1

您可以通过以下方式手动插入方程编号:

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\newcommand{\manualeqnum}{\refstepcounter{equation}\mbox{\upshape(\theequation)}}

\begin{document}

Some text $U, V \in \mathcal{T}$. Then also
$\begin{cases}
  U \cap X \in \mathcal{T}_1 & \manualeqnum \\
  U \cap Y \in \mathcal{T}_2 & \manualeqnum \label{eq:first}
\end{cases}$ as well as
$ \begin{cases}
  V \cap X \in \mathcal{T}_1 & \manualeqnum \\
  V \cap Y \in \mathcal{T}_2 & \manualeqnum \label{eq:second}
\end{cases}$.

See, for example, equations~\eqref{eq:first} and~\eqref{eq:second}.

\end{document}

您可能需要调整公式编号与其余文本之间的间距。在大多数情况下,使用环境实际上更清楚numcases

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath,cases}

\begin{document}

Some text $U, V \in \mathcal{T}$. Then also
\begin{numcases}{}
  U \cap X \in \mathcal{T}_1 \\
  U \cap Y \in \mathcal{T}_2 \label{eq:first}
\end{numcases}
as well as
\begin{numcases}{}
  V \cap X \in \mathcal{T}_1 \\
  V \cap Y \in \mathcal{T}_2. \label{eq:second}
\end{numcases}

See, for example, equations~\eqref{eq:first} and~\eqref{eq:second}.

\end{document}

相关内容