我在用着André Miede 的经典论文对于 Lyx。但是,我不知道如何在开始新部分后全局重置章节号。目录现在如下所示:
- 第1部分
- 第一章
- 第一章
- 第2部分
- 第 3 章
但我希望它看起来像这样:
- 第1部分
- 第一章
- 第一章
- 第2部分
- 第一章
非常感谢您的帮助!提前致谢!
答案1
您可以\@addtoreset{chapter}{part}
在序言中添加以下内容,将章节添加到计数器列表中,这些计数器会在新部分开始时重置
\documentclass{book}
\usepackage{classicthesis}
\makeatletter
\@addtoreset{chapter}{part}
\makeatother
\begin{document}
\tableofcontents
\part{title 1}
\chapter{title}
\chapter{title}
\chapter{title}
\part{title 2}
\chapter{title}
\chapter{title}
\chapter{title}
\chapter{title}
\chapter{title}
\end{document}
答案2
您只需要在某个部分开始时重置适当的计数器。
例如:
\newcommand{\mypart}[1]{\setcounter{chapter}{0} % reset chapter counter
\part{#1} % then create the part
}
然后您可以简单地使用\mypart
而不是\part
,编号就会如您所愿。