如何在页眉/页脚中添加章节名称?

如何在页眉/页脚中添加章节名称?

使用将\fancyhead{\leftmark}章节显示为

第 N 章:章节名称

我需要一个正常的格式,例如:

章节名称

也就是说,没有“CHAPTER”、章节编号、冒号和大写字母。

答案1

@C. Peters 完全正确,我只想在他的回答中添加一个 MWE:

\documentclass{report}
\usepackage{lipsum,fancyhdr} % 'lipsum' is only needed for the example.
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} % <--- Comment this line to see the difference.

\begin{document}
   \chapter{My first chapter}
   \lipsum
\end{document}

当您注释掉 C. Peters 时\renewcommand在此处输入图片描述

当您使用 C. Peters 时\renewcommand在此处输入图片描述

右上角的标题可以根据您的需要进行更改。

答案2

根据发行版中包含的手册第 10 页,它是:

\renewcommand{\chaptermark}[1]{%
 \markboth{#1}{}}

相关内容