类似的问题已经得到解答,但解决方案似乎没有提供我需要的。
我希望定理和方程在每个部分中都按如下方式进行。
假设我们已经开始第 6 节。如果我从定理开始,那么它将是定理 6.1。然后,如果我接下来使用方程,它将以编号显示(6.2)。下一个方程或定理(以先到者为准)将是 6.3,依此类推。
答案1
使用
\numberwithin{equation}{section}
(需要amsmath
)使section
计数器用作方程式的前缀,然后
\newtheorem{theorem}[equation]{Theorem}
使定理共享计数器equation
。完整的例子
\documentclass{article}
\usepackage{amsthm}
\usepackage{amsmath}
\numberwithin{equation}{section}
\newtheorem{theorem}[equation]{Theorem}
\begin{document}
\section{Test section}
\begin{theorem}
test theorem
\end{theorem}
\begin{equation}
a=b
\end{equation}
\begin{theorem}
test theorem
\end{theorem}
\begin{align}
a &= b \\
&= c
\end{align}
\end{document}