如何在 scrrprt 中获取全局方程编号?

如何在 scrrprt 中获取全局方程编号?

可能重复:
连续编号,即按章节/节对图表、表格和其他文档元素进行编号

当我在文档中任意喜欢的环境中插入公式时,scrrprt我会得到像 (1.1) 这样的编号。但我的文档中编号的公式很少,所以我想得到像 (1) 这样的编号。我该如何改变这种情况?

答案1

使用更改中心包裹。

\documentclass{scrreprt}
\usepackage{chngcntr}
\counterwithout{equation}{chapter}
\begin{document}
\chapter{a chapter}
\begin{equation}
a = b
\end{equation}
\chapter{another chapter}
\begin{equation}
a = b
\end{equation}
\end{document}

相关内容