参考书目和图表/表格列表中的标题错误

参考书目和图表/表格列表中的标题错误

我正在完成一篇论文,遇到了一个与页眉有关的问题。在论文期间,页眉被定义为当前章节的名称。据我了解,提供的类是通过

\RequirePackage[automark]{scrlayer-scrpage}
\automark{section}

这是它应该工作的方式。但是,第一个问题出现在没有任何章节的章节中,即第 6 章是没有 6.1 的结论。然后,第 6 章中显示前一节 5.4。我通过添加解决了这个问题

\automark{chapter}

在结论的开头。虽然这个问题可能存在更复杂、更通用的解决方案,但这种方法还是按预期工作的。

但是 #2,结论之后,有参考书目、图表列表和表格列表。只有参考书目有第 6 章或第 5.4 节的标题(取决于我是否包含 automark{chapter} 命令),其他列表按预期显示在标题中。因此,参考书目的标题中应该有“参考书目”。不幸的是,我不知道怎么做。列表由命令生成

\printbibliography % Print literature
\listoffigures % Show list of figures
\listoftables % Show list of tables

没有任何关于它们进一步的信息,即使在类文件中也是如此。

任何建议都值得赞赏!提前致谢!如果缺少任何所需信息,请告知我。

答案1

单面文件的建议:

\documentclass{scrreprt}
\usepackage{blindtext}% only for dummy text

\usepackage{scrlayer-scrpage}
\automark{chapter}
\automark*{section}

\begin{document}
\blinddocument
\blinddocument
\chapter{Foo}
\Blindtext[20]
\blinddocument
\end{document}

双面文档的一种可能性是:

\documentclass[twoside]{scrreprt}
\usepackage{blindtext}% only for dummy text
\usepackage[automark]{scrlayer-scrpage}
\automark[chapter]{chapter}
\automark*[section]{section}
\begin{document}
\blinddocument
\blinddocument
\chapter{Foo}
\Blindtext[20]
\blinddocument
\end{document}

相关内容