我希望我的方程式编号为“1'”。我已经通过 实现了这一点\tag{1'}
。但现在我不知道如何在文档中引用它。有没有方法可以调用它或对方程式进行编号,例如 1、1'、1''?
答案1
照常使用\label
and \eqref
(或\ref
)。我认为没有什么区别。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
1+1=2 \tag{A}\label{eq:simple}
\end{equation}
Eq.~\eqref{eq:simple} is simple.
\end{document}
(为了让这个问题更有用)
要使一个方程成为另一个方程的变体,你可以使用以下命令:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
a+b = b+a \label{eq:comm}
\end{equation}
\begin{equation}
1+2 = 2+1 \tag{\ref{eq:comm}$'$}\label{eq:comm:inst}
% if hyperref is used, replace \ref with \ref*
\end{equation}
Commutative law \eqref{eq:comm} and an instance \eqref{eq:comm:inst}.
\end{document}