我使用过该fancyhdr
软件包,总体来说效果不错。遗憾的是,一些“特殊”页面的页眉(如目录和参考书目的页眉)似乎无法通过任何方法来格式化。它们会显示大写的“目录”和“参考书目”,而不是文档其余部分的小写页眉。我该如何配置它们的外观,或者,特别是,将它们改为小写?
一个例子说明了当你编译它时我的意思:
\documentclass[twoside, openright]{report}
\usepackage{fancyhdr}
% Setup fancyhdr
\pagestyle{fancy} % Use fancy headers
\fancyhf{} % Clear all header and footer entries
\renewcommand{\chaptermark}[1]{\markboth{\chaptername\ \thechapter.\ #1}{}} % how the chapter is supposed to be displayed in the headers
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}} % how the section is supposed to be displayed in the headers
\renewcommand{\headrulewidth}{0.1ex} % Head line
\renewcommand{\footrulewidth}{0.1ex} % Foot line
\fancyfoot[LE,RO]{\thepage} % Footer
\fancyhead[LE]{\textit{\leftmark}} % Header
\fancyhead[RO]{\textit{\rightmark}} % Header
\fancypagestyle{plain}{\fancyhf{}\fancyfoot[LE,RO]{\thepage}\renewcommand{\headrulewidth}{0ex}} % Redefine plain style, it is used for pages with new chapters
\begin{document}
\tableofcontents
\chapter{chapter 1}
\chapter{chapter 2}
\chapter{chapter 3}
\chapter{chapter 4}
\chapter{chapter 5}
\chapter{chapter 6}
\chapter{chapter 7}
\nocite{*} \bibliography{?} % insert your own bibliography here or comment it out
\end{document}
答案1
在 的文档中搜索fancyhdr
该\nouppercase
命令。或者使用其他包,例如titleps
。