我正在使用book
文档类,其中有部分、章节、节和小节。当前,正在使用以下默认编号方案并产生以下内容:
Part I
--Chapter 1
----Section 1.1
------ Subsection 1.1.1
----Section 1.2
------ Subsection 1.2.1
--Chapter 2
----Section 2.1
----Section 2.2
--etc.
然而,我想要的是使用连续的整数对各个部分进行编号,如下所示:
Part I
--Chapter 1
----Section 1
------Subsection 1.1
----Section 2
------Subsection 2.1
--Chapter 2
----Section 3
----Section 4
--etc.
基本上,我只希望部分计数器是完整的并且可以重复使用,而其他编号保持(相对)相同。我必须做什么才能实现这个方案?
答案1
使用
\counterwithout{section}{chapter}
来自chngcntr
包裹:
\documentclass{book}
\usepackage{chngcntr}% http://ctan.org/pkg/chngcntr
\counterwithout{section}{chapter}
\begin{document}
\tableofcontents
\part{A part}
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\section{A section}
\subsection{A subsection}
\chapter{A chapter}
\section{A section}
\section{A section}
\end{document}
\counterwithout{<cntrA>}{<cntrB>}
<cntrA>
删除了当<cntrB>
增加时重置 的功能。在book
和中report
,这是默认设置。