附录标题中的有线点

附录标题中的有线点

我使用这个代码片段创建了一个附录

\usepackage[toc,page]{appendix}
\begin{appendices}
\addtocontents{toc}{\protect\setcounter{tocdepth}{1}}
\makeatletter
\addtocontents{toc}{%
  \begingroup
  \let\protect\l@chapter\protect\l@section
  \let\protect\l@section\protect\l@subsection
}
\makeatother
  \chapter{Code Listings}
  \input{anhang_code.tex}

  \chapter{Survey Questions}
  \input{anhang_survey.tex}
\addtocontents{toc}{\endgroup}
\end{appendices}

但是,附录页的页眉包含一个有线点

在此处输入图片描述

我怎样才能去掉这个点?

相关内容