答案1
不幸的是,您的问题中没有 MWE。默认标题条目将是“Abbildungsverzeichnis” - 没有“Kapitel 0”。:
代码:
\documentclass[ngerman,headsepline]{scrbook}
\usepackage{babel}
\usepackage{pgffor}% only for the example
\begin{document}
\listoffigures
\chapter{A Chapter}
\foreach \i in {1,...,100}% loop to generate 100 LoF entries
{\captionof{figure}{Example caption}}
\end{document}
如果要plain
在列表和目录中使用第 2 页等的页面样式,请添加
\AfterTOCHead{\pagestyle{plain}}
\AfterStartingTOC{\thispagestyle{plain}}
回到序言。
代码:
\documentclass[ngerman,headsepline]{scrbook}
\usepackage{babel}
\usepackage{pgffor}% only for the example
\AfterTOCHead{\pagestyle{plain}}
\AfterStartingTOC{\thispagestyle{plain}}
\begin{document}
\listoffigures
\chapter{A Chapter}
\foreach \i in {1,...,100}% loop to generate 100 LoF entries
{\captionof{figure}{Example caption}}
\end{document}