在其他部分重复使用该命题

在其他部分重复使用该命题

在第 1 部分中,我定义了一个命题,并且我想在其他部分(例如附录)中添加证明,我怎样才能重复使用该数字而不生成新的命题编号?

\documentclass[11pt]{article}
 \newtheorem{proposition}{Proposition}
 \usepackage{chngcntr}
 \begin{document}
 
 \begin{proposition}
   This is a proposition
 \end{proposition}

  \appendix
  % add my proof to this part
 \end{document}

答案1

您可以使用thm-restate随附的软件包thmtools

\documentclass[11pt]{article}
\usepackage{amsthm}
\usepackage{thmtools, thm-restate}
\declaretheorem[name=Proposition]{proposition}
\usepackage{chngcntr}

\begin{document}

 \begin{restatable}{proposition}{Firstprop}
   This is a proposition.
 \end{restatable}

\appendix
\section{Proofs}
\Firstprop*
  \begin{proof}
  add my proof to this part \qedhere
\end{proof}

\section{More results}
\begin{proposition}
  This is another proposition.
\end{proposition}

\end{document} 

在此处输入图片描述

答案2

尝试:

\documentclass[12pt]{article}
\newtheorem{proposition}{Proposition}
\usepackage{chngcntr}
\begin{document}
\begin{proposition}\label{prop:simple}
This is a simple proposition
\end{proposition}
\appendix
\section*{Proof od Proposition~\ref{prop:simple}}
Here is the proof.
\end{document}

如果你想重述命题,请查看该thmtools包。如果你想为你的新定理添加样式,请查看该ntheorem包。

相关内容