
Me dan la siguiente configuración del teorema, que debo usar.
\numberwithin{equation}{chapter}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{definition}[theorem]{Definition}
\newtheorem{proposition}[theorem]{Proposition}
\theoremstyle{nonumberplain}
\theorembodyfont{\normalfont}
\theoremsymbol{\ensuremath{\square}}
\newtheorem{proof}{Proof}
¿Cómo es posible reformular un teorema con el mismo número que cuando se enunció por primera vez? No me importa si tengo que reescribir el teorema o incluso poner el número a mano, porque sólo lo necesito una vez.
Respuesta1
Resolví mi problema cambiando un poco la configuración.
\numberwithin{equation}{chapter}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{definition}[theorem]{Definition}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem*{thm345}{Theorem 3.45}
\theoremstyle{nonumberplain}
\theorembodyfont{\normalfont}
\theoremsymbol{\ensuremath{\square}}
\newtheorem{proof}{Proof}
Ahora usando:
\begin{thm345}
theorem text
\end{thm345}
me da lo que quiero