章节编号分为两部分:I.1、I.2..II.1、II.2、

章节编号分为两部分:I.1、I.2..II.1、II.2、

我正在写一篇论文报告,论文分为两部分(第一部分和第二部分)。我希望章节编号如下:I.1、I.2、...II.1、II.2 等。现在章节编号继续(第二部分从第 10 章开始),我知道我可以“重置”章节编号,这样第二部分又从第 1 章开始,但有没有办法把章节编号放在前面?

提前致谢!

答案1

您可以使用\counterwithin{chapter}{part}。使用 的无星号版本\ccounterwithin,命令\thechapter会根据您的需要自动更新。

这是一个完整的例子。

\documentclass{report}
\counterwithin{chapter}{part}
\begin{document}
\part{First part}
\chapter{Chapter I.1}
\chapter{Chapter I.2}
\part{Second part}
\chapter{Chapter II.1}
\chapter{Chapter II.2}
\end{document}

第二部分的第一章如下:

相关内容