我的正文中有一些引理(我们称之为引理 4),但我在附录中证明了它。因此,我想将附录中的引理重新表述为引理 4。我该如何实现这一点?
谢谢!
答案1
您可以使用以下thm-restate
包thmtools
:
\documentclass{article}
\usepackage{thmtools}
\usepackage{thm-restate}
\declaretheorem{Lemma}
\begin{document}
\section{First}
\begin{restatable}{Lemma}{lemmfour}
\label{lemm:4}
Content of Lemma~4.
\end{restatable}
\section{Second}
\lemmfour*
\end{document}
答案2
一种方法是使用thm-restate
属于的包thmtools
。例如,参见这个问题。