公式编号

公式编号

我想使用 amsart 写一篇简短的笔记,并且我希望公式的编号应该是 (1)、(2) 等等(而不是 (0.1)...),并且定理应该得到数字 1,2,(而不是 (0.1)...)。

我该怎么做才能避免0的扩散?

答案1

在你的序言中使用它:

\usepackage{chngcntr}
\counterwithout{equation}{section}

答案2

你不需要做任何特别的事情:

\documentclass{amsart}
\newtheorem{thm}{Theorem}

\begin{document}

\begin{thm}
This states an important fact.
\end{thm}

And we follow with a very important equation
\begin{equation}
1=1
\end{equation}

\end{document}

在此处输入图片描述

你可能会有类似

\newtheorem{thm}{Theorem}[section]

\numberwithin{equation}{section}

否则,如您所见,不会添加章节编号。

相关内容