自定义每章的 LaTeX 节号

自定义每章的 LaTeX 节号

如何让章节编号从 \thechapter * 100 开始。因此,在第 1 章中,我们有:第 100 节、第 101 节等

第 2 章:第 200 节、第 201 节等

答案1

改编

  • 计算部分编号\the\numexpr100*\thechapter-1\relax
  • 用于在每章之后xpatch执行命令\setcounter

代码

\documentclass{book}

\usepackage{xpatch}
\makeatletter
\xapptocmd{\@chapter}{%
    \setcounter{section}{\the\numexpr100*\thechapter-1\relax}
}{}{}
\makeatother

\begin{document}

\chapter{A}

\section{A1}
\section{A2}
\chapter{B}
\section{B1}
\section{B2}
    
\end{document}

结果

在此处输入图片描述 在此处输入图片描述

答案2

您可以将计数器设置为您想要的任意数字\setcounter{section}{99}

相关内容