用給定定理設定重述定理

用給定定理設定重述定理

我得到了以下定理設置,我必須使用它。

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

給我想要的

相關內容