首字母缩略词和参考书目列表的不同标题

首字母缩略词和参考书目列表的不同标题

我用花式高清调整论文的页眉和页脚。但我在论文到达时遇到了问题缩略词列表参考书目部分。我不知道如何为每个部分更改它。目前我正在这样做:

\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

如何更改每个部分的标题?

相关内容