我如何才能对用文本分隔的方程式添加子标签?

我如何才能对用文本分隔的方程式添加子标签?

我想给两个用文本分隔的方程添加子标签,并将它们一起引用。是否可以通过使用equation(或align) 和 来实现这一点subequations?这是我的 MWE

\documentclass{article}
\usepackage{amsmath}
\begin{document}
For the channel to support multiplexing, $A$ should satisfy
\begin{equation}
  A=B
\end{equation}
and
\begin{equation}
  B>0.
\end{equation}
\end{document}

我希望第一个方程被标记为(1a),第二个被标记(1b),我想将它们与(1)如下。那么我该如何实现呢?

答案1

这就是subequationsenv 的amsmath用途。

插图:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
For the channel to support multiplexing, $A$ should satisfy
\begin{subequations}
  \label{master}
  \begin{equation}
    A=B \label{first_eq}
  \end{equation}
  and
  \begin{equation}
    B>0. \label{second_eq}
  \end{equation}
\end{subequations}

\eqref{first_eq}
\eqref{second_eq}

\eqref{master}

\end{document}

相关内容