如何使书籍类中的页眉显示部分和章节,而不是章节和节

如何使书籍类中的页眉显示部分和章节,而不是章节和节

我正在准备一本书,这本书将分为部分、章节和节。目前,我的页眉给出了章节标题(在正面页面上)和节标题(在反面页面上)。我想从“章节/节”切换到“部分/章节”。如果您有任何建议,我将不胜感激。

答案1

以下是使用标准book(或report)类的一种可能性,fancyhdr; 这etoolbox包用于修补\@part以获取部分标题:

\documentclass{book}
\usepackage[a6paper]{geometry}%just for the example
\usepackage{fancyhdr}
\usepackage{etoolbox}
\usepackage{lipsum}%just for the example

\makeatletter
\patchcmd{\@part}
  {\markboth{}{}}
  {\gdef\parttitle{#1}}
  {}
  {}
\makeatother

\pagestyle{fancy}

\fancyhf{}
\fancyhead[EL]{\partname~\thepart.\ \parttitle}
\fancyhead[OR]{\nouppercase\leftmark}
\fancyhead[ER,OL]{\thepage}

\begin{document}

\part{Test part one}
\chapter{Test chapter one}
\section{Test section one one}
\lipsum[1-4]
\part{Test part two}
\chapter{Test chapter two}
\section{Test section two one}
\lipsum[1-4]

\end{document}

在此处输入图片描述

答案2

使用scrlayer-scrpage KOMA-Script 包和一些黑客技术...

\documentclass{book}
\usepackage{blindtext}
\usepackage{scrlayer-scrpage}
\automark[chapter]{part}
\usepackage{etoolbox}
\makeatletter
\apptocmd{\@part}{\partmark{#1}}{}{}% thanks to esdd and Markus
\makeatother
\begin{document}
\part{dance}
\chapter{walzing wombat}
\blindtext[10]
\chapter{samba squirrel}
\blindtext[10]
\part{property}
\chapter{busy bee}
\blindtext[10]
\chapter{lazy leguan}
\blindtext[10]
\end{document}

使用 KOMA 等效产品,无需进行黑客攻击;一切都可以立即使用。

如果标题不应大写,请使用markcase选项1 来加载scrlayer-scrpage

\usepackage[markcase=noupper]{scrlayer-scrpage}


1 - KOMA-Script 手册第 5 章(2016-06-14),第 222 页

相关内容