Thanks.
depends on how you define your theorems
--
/daleif (remove RTFSIGNATURE from email address)
LaTeX FAQ: http://www.tex.ac.uk/faq
LaTeX book: http://www.imf.au.dk/system/latex/bog/ (in Danish)
Remember to post minimal examples, see URL below
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=minxampl
http://www.minimalbeispiel.de/mini-en.html
This should work, as long as you don't pull too many tricks within your
theorem (like a float within the body).
\documentclass{book}
\usepackage{thm-restate}% CTAN:macros/experimental/thmtools
\newtheorem{theorem}{Theorem}[chapter]
\begin{document}
\chapter{Stuff}
\begin{theorem}
This is a test.
\end{theorem}
\begin{restatable}[Badoo's theorem]{theorem}{mainclaim}
\label{thm:1}
This is the main claim, which is proven in the appendix.
\end{restatable}
\begin{theorem}
This is just another one.
\end{theorem}
\appendix
\chapter{Omitted proofs}
\mainclaim*
(The original appears on p.\,\pageref{thm:1})
\end{document}
HTH
Ulrich