更改参考书目页的页眉样式

更改参考书目页的页眉样式

我的 LaTeX 如下所示(我省略了一些内容):

\documentclass{amsbook}

\usepackage{fancyhdr,etoolbox}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[LO]{\nouppercase\rightmark}
\fancyhead[RE]{\nouppercase\leftmark}

\renewcommand{\contentsname}{Table of contents}
\makeatletter
\patchcmd{\@tocline}
  {\hfil}
  {\leaders\hbox{\,.\,}\hfil}{}{}
\makeatother

\begin{document}

\pagestyle{plain}

\frontmatter

\title{\textsc{AAAZZZ}}
\author{LZ}

\maketitle

\chapter*{Abstract}
The goal of this notes is to describe \ldots

\chapter*{Acknowledgements}
I offer my sincerest gratitude to \ldots

\tableofcontents

\mainmatter

\cleardoublepage

\pagenumbering{arabic}
\pagestyle{fancy}

\chapter{Preliminaries on A}

\chapter{Results on Z}

\appendix

\chapter{More results on Z}

\backmatter

\begin{thebibliography}{10}

\end{thebibliography}

\end{document}

我的参考书目有 2 页,其第 2 页的页眉(右侧部分)显示为“B. 参考书目”(同一页的页眉左侧部分为页码)。如何将其更改为仅“参考书目”(删除“B.”)?

答案1

添加行

\renewcommand\chaptermark[1]{\markboth{#1}{}}

就在参考书目开始之前应该起作用。

相关内容