我使用 scrbook,并希望连续对各节进行编号,因此我不想使它们依赖于章节。不应使用 1.1、1.2、1.3、2.1、2.2...,而应使用 1、2、3、4...。
谢谢你的帮助,我不知道该怎么办
答案1
解决方案是使用\counterwithout
如图所示。但是,自 2018 年 4 月发布以来,该软件包的功能chngcntr
已直接集成到 LaTeX 内核中,因此您只需使用
\documentclass{scrbook}
% \usepackage{chngcntr} % not necessary in recent distributions
\counterwithout{section}{chapter}
\begin{document}
\tableofcontents
\chapter{First}
\section{Foo}
\section{Bar}
\chapter{Second}
\section{Baz}
\section{Bla}
\end{document}