书目标题没有改变

书目标题没有改变

我在论文中使用了书籍样式,但最后一章的页眉总是出现在参考书目上方,我无法改变它。我不想在参考书目页面顶部有任何页眉或新的页眉“参考书目”。两​​者都很好。我使用了 markboth,如下面的代码所示(我在这个网站上找到的),但它不起作用。

\include{chapters/Chapter1}
\include{chapters/Chapter2}
\include{chapters/Chapter3}
\include{chapters/Chapter4}
\include{chapters/Chapter5}
\include{chapters/Chapter6}

\cleardoublepage

\bibliographystyle{apacite}
\markboth{Bibliography}{Bibliography}
\bibliography{Bibliography}

\end{document}

这里有两张图片来说明问题。第一张是我的书目开头,没问题。但是我的书目第二页以我上一章的标题开头...

enter image description here enter image description here

我到处搜索,但找不到适合我的答案

答案1

显然,您还没有为所需的样式定义标题。您可以使用\nouppercase标题命令。这是一个最小的工作示例:

\documentclass[a4paper,10pt]{book}

\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhf{}
\fancyhead[LE]{\nouppercase{\leftmark}}
\fancyhead[RO]{\nouppercase{\rightmark}}


\begin{document}
\chapter{Sample Chapter}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. 

\nocite{*}
\bibliographystyle{unsrt}
\bibliography{sample}
\end{document}

enter image description here

相关内容