我想更改章节号,以便当我编译代码时,文档从第 2、第 3 或任何其他章节号开始。
有什么更好的方法可以做到这一点?
答案1
\c@chapter
是存储当前章节号的计数器。要修改它,您必须使用
\documentclass{book}
\makeatletter
\newcommand{\setchapter}{\afterassignment\fixch@pter\c@chapter}
\newcommand{\fixch@pter}{\advance\c@chapter by -1}
\makeatother
\begin{document}
\setchapter=4
\chapter{My Chapter}
\end{document}