公式編號

公式編號

我想用 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}

否則,如您所見,不會添加節號。

相關內容