使方程遵循定理计数器

使方程遵循定理计数器

我知道已经发布了几个与此类似的问题,但我还没有找到一个与我下面要问的完全一致的问题。

以下是我目前所掌握的信息:

\documentclass{amsart}

\theoremstyle{plain}
\newtheorem{teo}{Theorem}[section]

\begin{document}

\section{A section}
\begin{teo} A theorem. \end{teo}
\begin{equation} 0=1 \end{equation}

\end{document}

输出为:

在此处输入图片描述

我希望等式旁边的 (1) 为 1.2。在下一部分中,将出现类似的模式,只是从 2 开始。

答案1

您可以teo按照equation计数器进行操作:

\documentclass{amsart}

\theoremstyle{plain}
\newtheorem{teo}[equation]{Theorem}
\numberwithin{equation}{section}

\begin{document}

\section{A section}
\begin{teo} A theorem. \end{teo}
\begin{equation} 0=1 \end{equation}
\begin{teo} A theorem. \end{teo}
\begin{equation} 0=1 \end{equation}

\end{document}

在此处输入图片描述

相关内容