根据给定的定理设置重述定理

根据给定的定理设置重述定理

我得到了下列定理设置,我必须使用它。

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

给了我想要的东西

相关内容