
Мне дана следующая теорема, которую я должен использовать.
\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}
Как можно переформулировать теорему с тем же номером, что и в первой формулировке? Я не против, если мне придется переписать теорему или даже вставить номер вручную, потому что мне это нужно только один раз.
решение1
Я решил свою проблему, немного изменив настройки.
\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}
Сейчас используется:
\begin{thm345}
theorem text
\end{thm345}
дает мне то, что я хочу