I have a document with a lemma (using amsthm
), like so:
\begin{lem} \label{mylemma}
% ...
\end{lem}
The proof of this lemma can be found in the appendix (see section \ref{sec:proof_of_mylemma}).
I now place a copy of the lemma in the appendix, with proof included:
\section{Appendix}
\section{Proof of lemma \ref{mylemma}} \label{sec:proof_of_my_lemma}
\begin{lem}
% ...
\end{lem}
\begin{proof}
% ...
\end{proof}
The problem is that the second copy of my lemma has a new number. How can I renumber this lemma to mimick the number of mylemma
?
Thanks!