我用花式高清调整论文的页眉和页脚。但我在论文到达时遇到了问题缩略词列表和参考书目部分。我不知道如何为每个部分更改它。目前我正在这样做:
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
\fancyhead{} % clear all header fields
\fancyhead[RO]{PhD thesis}
\fancyhead[LE]{\chaptername\ \thechapter\ --\ \leftmark}
\fancyfoot{} % clear all footer fields
\fancyfoot[CE,CO]{\thepage}
%############################################################################
...
\include{chapter/...}
...
%############################################################################
%\newcommand{\glossaryname}{List of Acronyms}
\fancyhead[LE]{\glossaryname}
\printglossary[type=\acronymtype,title=List of Acronyms, toctitle=List of Acronyms]
\fancyhead[LE]{\bibname}
\bibliographystyle{unsrtnat}
\bibliography{biblio/...}
%\addcontentsline{toc}{chapter}{\bibname}
\appendix
\fancyhead[LE]{Appendix\ \thechapter\ --\ \leftmark}
\include{appendix/...}
但我\bibname
同时获得了首字母缩略词列表和参考书目部分的标题(参考书目)。我尝试将命令移到andfancyhead
之后,但在这种情况下,显示的是。\printglossary
\bibliography
\glossaryname
如何更改每个部分的标题?