我有一个带标签的子方程环境,里面有一个 alignat 环境,其中每行都有一个标签。
您是否认为像我在 MWE 中那样引用完整模型是可以的,因为无法直接找到具体标签 (0.1) 作为方程编号?或者除了引用方程范围之外,还有其他更好的方法来引用完整模型吗(0.1a)--(0.1b)
?
梅威瑟:
\documentclass{scrbook}
\usepackage{amsmath}
\begin{document}
I'm referring to the complete model \eqref{eq:MainLabel} and here to the restrictions \eqref{eq:Sub1} and \eqref{eq:Sub2}
\begin{subequations}
\label{eq:MainLabel}
\begin{alignat}{2}
\sum_{m \in M} x_m & = 1 & \quad & , \forall m \in M \colon a \neq b \label{eq:Sub1} \\
x_m & = 1 && , \forall m \in M \colon e \neq f \label{eq:Sub2}
\end{alignat}
\end{subequations}
\end{document}