数式の番号付け

数式の番号付け

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}

それ以外の場合は、ご覧のとおり、セクション番号は追加されません。

関連情報