数定理

数定理

我有一个非常简单的问题,但在网上找不到答案。在我的论文中,我有两个定理:定理 1 和定理 2。但是,第二个定理的编号我不能等于 2。如何继续定理编号?

\newtheorem{thm1}{Theorem}
\begin{thm1}
This is Theorem 1
\end{thm1}

\newtheorem{thm2}{Theorem}
\begin{thm2}
This is Theorem 2
\end{thm2}

答案1

声明\newtheorem定义了一个新型定理,而不是一个新的陈述。

在您使用的文档中实例声明的类型。

\documentclass{article}

\newtheorem{thm}{Theorem}

\begin{document}

\begin{thm}
This will be theorem 1.
\end{thm}

\begin{thm}
This will be theorem 2.
\end{thm}

\end{document}

相关内容