与えられた定理の設定で定理を言い直す

与えられた定理の設定で定理を言い直す

次の定理の設定が与えられており、それを使用する必要があります。

\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}

私が望むものを与えてくれる

関連情報