当我在文档中任意喜欢的环境中插入公式时,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}