连续的定理、命题等

连续的定理、命题等

我在用着

\usepackage{amsthm}
\newtheorem{theorem}{Theorem}
\newtheorem{proposition}{Proposition}

定理和命题的编号不连续(我得到的是定理 1 后跟命题 1,而不是定理 1 后跟命题 2)。我该如何修复它?

我需要这个编号,因为否则我会有定理 1、命题 1、引理 1、推论 1、注释 1 等。如果我稍后引用命题 1,我认为这会非常令人困惑。

答案1

\newtheorem构造提供两个可选参数。第一个参数确定您的编号。在本例中,这意味着proposition应该使用与相同的计数器theorem

\documentclass{article}

\usepackage{amsthm}
\begin{document}


\newtheorem{theorem}{Theorem}
\newtheorem{proposition}[theorem]{Proposition}

\begin{theorem}
1+1=2.
\end{theorem}

\begin{proposition}
1+2=3
\end{proposition}

\end{document}

在此处输入图片描述

相关内容