未编号的章节不会显示在标题中

未编号的章节不会显示在标题中

我正在写一本书,其中在目录之后和编号章节之前有一个未编号的章节。

以下是MWE

\documentclass[draft]{book}
\usepackage[twoside,a4paper]{geometry}%

\usepackage{lipsum}

\begin{document}
\frontmatter
        \addtocounter{tocdepth}{-2}
        \tableofcontents

\mainmatter
\chapter*{unnumbered-chapter}
\lipsum[1-20]\par
\chapter{1st Chapter}
\lipsum[11-30]\par
\chapter{2nd Chapter}
\lipsum[21-40]\par
\end{document}

在生成的 PDF 文件中,未编号的章节具有标题“CONTENTS”。

https://i.stack.imgur.com/nV2rj.png

https://i.stack.imgur.com/YI59e.png

https://i.stack.imgur.com/3x5cf.png

问题1:为什么会出现这种情况?我希望页眉显示“未编号章节”。页码显示阿拉伯数字,这是正确的。

问题2:有人可以告诉我如何将“前言”、“序言”和“介绍”包含在页眉中并以罗马数字表示吗?

提前致谢。

请随意编辑问题标题/问题内容/标签以使其相关。

答案1

对于问题 (1):大多数类\chapter*(和朋友)既不写入标题也不写入目录。要将标题添加到标题,请使用类似

\chapter*{Title}
\markboth{Title}{Title}

至于问题 (2):您的文档的某些部分属于\frontmatter,因此只需使用\chapter{Title}\frontmatter部分编号被禁用,但\chapter{Title}当然仍会写入标题和目录。

随后\mainmatter将分段宏恢复到“正常”状态。

相关内容