这与标记一个相关或可作为另一个方程的结果的方程有关。假设我有方程 (1.1)。我怎样才能标记与之相关的另外两个方程,如 (1.1)'、(1.1)''?任何帮助都非常感谢。
答案1
您可以使用\tag
或\tag*
插入您想要的任何“方程编号”:
\documentclass{article}
\usepackage{amsmath,lipsum}
\begin{document}
\lipsum*[1]
\begin{equation}
f(x) = \mbox{First equation} \label{eq:first}
\end{equation}
\lipsum*[2]
\begin{align}
g(x) &= \mbox{Second equation} \tag*{(\theequation)'} \label{eq:second} \\
h(x) &= \mbox{Third equation} \tag*{(\theequation)''} \label{eq:third}
\end{align}
See equations~\eqref{eq:first}, \ref{eq:second} and~\ref{eq:third}.
\begin{equation}
i(x) = \mbox{Another equation}
\end{equation}
\end{document}
\eqref
插入周围的(
.. )
,因此\ref
如果您自己管理括号,请使用。有些人使用(1')
and(1'')
而不是(1)'
and (1)''
,这样您就可以\eqref
照常使用。
如果方程式不一致,您可以使用\ref
而不是\theequation
。