具有先前使用过(自动分配)数字的数字方程式

具有先前使用过(自动分配)数字的数字方程式

假设您有一篇很长的文章(即论文/书籍/等),每章都有很多方程式。在文章后面的某个时候,您不仅想引用一个方程式,而且实际上还想再次拼写出来,以方便读者阅读。同一个方程式以前用过,所以您不想给它一个新的数字。您可以把它放在没有数字的文本中。但是,在第二次(或任何后续)出现时,重现原始方程式编号的最佳方法是什么?理想情况下,解决方案可以与 hyperref 包一起使用,允许在 pdf 中放置指向原始方程式的链接。

答案1

\tag该包中的命令可以amsmath帮助:

\documentclass[12pt,a4paper,twoside]{book}
\usepackage[latin1]{inputenc}
\usepackage{hyperref}
\usepackage{amsmath}
\begin{document}
This is the first appearance of the equation:
\begin{equation}\label{eqn:einstein}
E=mc^2
\end{equation}
Now comes a lot of text
...
...
Now I want to cite the equation, and repeat it for the reader:
\[
E=mc^2\tag{\ref{eqn:einstein}}
\]
\end{document}

相关内容