独立于章节编号的节编号

独立于章节编号的节编号

是否有一种创建文档的方法,使得章节编号与章节编号无关?

例如:

第1章
   第 1 节
   第 2 节
第2章
   第3节
   第 4 节
   第 5 节
第3章
   第六节
   第七节

答案1

\documentclass{book}

\usepackage{remreset}

\makeatletter
  \@removefromreset{section}{chapter}
\makeatother

\renewcommand{\thesection}{\arabic{section}}

\begin{document}
\tableofcontents
\chapter{First}
\section{First}
\section{Second}
\section{Third}
\chapter{Second}
\section{Fourth}
\section{Fifth}
\section{Sixth}

\end{document}

在此处输入图片描述

相关内容