如何使定理和方程共享编号

如何使定理和方程共享编号

如何使定理和方程共享编号?默认编号系统如下:

定理 1。等等等等……

1=0+1 (1)

定理 2。更多废话……

定理 3. 不再无聊……

2=1+1(2)

括号中的数字是方程编号。如何将上面的公式改写成这样:

定理 1。等等等等……

1=0+1 (2)

定理 3。更多废话……

定理 4. 不再无聊……

2=1+1(5)

我正在使用 ntheorem 包,但不知道如何使用。我需要使用其他包吗?

答案1

您只需要告诉它使用方程计数器对您的定理进行编号。

\newtheorem{thm}[equation]{Theorem}

现在\begin{thm}将与 编号相同\begin{equation}

答案2

查看amsthm 文档。它只有几页长,包括对这一点的讨论(以及许多其他与定理风格相关的讨论)。

答案3

这是一个使用的解决方案thm工具除了 ntheorem 之外的包。

\documentclass{article}

\usepackage{ntheorem}
\usepackage{thmtools}
\declaretheorem[numberlike=equation]{theorem}

\begin{document}

\begin{equation}
a^2 + b^2 = c^2
\end{equation}

\begin{theorem}
Some text.
\end{theorem}

\end{document}

相关内容