
Recebi a seguinte configuração de teorema, que devo 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}
Como é possível reformular um teorema com o mesmo número de quando foi declarado primeiro? Não me importo se tiver que reescrever o teorema ou mesmo colocar o número à mão, porque só preciso dele uma vez.
Responder1
Resolvi meu problema mudando um pouco a configuração.
\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}
Agora usando:
\begin{thm345}
theorem text
\end{thm345}
me dá o que eu quero