有没有一种引用集合中单个方程的方法?我有三个一起编号的方程(例如 (2.3))。我更喜欢将它们作为一个集合进行编号,因为它们直接相关,而且看起来比单独编号要清晰得多。例如,我该如何引用其中的第三个方程?
答案1
\label
要使用/机制引用某个东西,\ref
它必须有一个数字。对于您的情况,您可以使用subequations
来自 的环境amsmath
。此类环境中的所有编号方程式将编号为 1a、1b 等,而不是 1、2 等。可以对方程组或子方程式进行交叉引用。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{subequations} \label{equationgroup}
\begin{gather}
z=x \label{eqA} \\
a=b \label{eqB} \\
f=g \label{eqC}
\end{gather}
You can have text in between here.
\begin{equation}
h=i
\end{equation}
\end{subequations}
Refer to \eqref{equationgroup} or for example \eqref{eqB}.
\end{document}