页码旁边的标题已超越下一章

页码旁边的标题已超越下一章

我的列表有一章

%%% Document Class
\documentclass[ngerman,bt]{dbvdoc}

\phantomsection
\addcontentsline{toc}{chapter}{Listings}
\lstlistoflistings 
\cleardoublepage

下一个是缩略词

\chapter*{Acronyms}
\addcontentsline{toc}{chapter}{Acronyms}
\begin{acronym}
    ....
\end{acronym}

问题是,缩略词章节第二页的页码(我不知道该怎么称呼它)旁边的标题仍然是“列表”,我不知道如何更改它。我正在使用 pdfLaTeX。

答案1

标题可以手动设置

\chapter*{Acronyms}
\markboth{Acronyms}{Acronyms}
\addcontentsline{toc}{chapter}{Acronyms}

可能进行一些格式化以使它们与其他标题一致。

如果课程是book基于书本的,那么可以简单地说

\chapter{Acronyms}

前提是这是在\frontmatter\mainmatter声明之间。

相关内容