我想将章节标题放在偶数页眉上,将章节部分的标题放在奇数页上。
我的标题现在正在使用以下代码:
\begin{document}
\frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
\setstretch{1.3} % Line spacing of 1.3
% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header
\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
此外,各章节位于单独的文件中,并在主文件中调用。
答案1
您可以简单地使用选择器E
和O
来选择偶数页和奇数页。以下是 MWE:
\documentclass{book}
\usepackage{lipsum}
\usepackage{fancyhdr}
\fancyfoot{}
\fancyhead[RO,LE]{\thepage}
\fancyhead[LO]{\leftmark}
\fancyhead[RE]{\rightmark}
\begin{document}
\pagestyle{fancy}
\chapter{Chapter}
\section{section}
\lipsum
\lipsum
\end{document}
输出如下:
\chaptermark
您可以通过重新定义和来修改章节和部分的显示方式\sectionmark
。