图录第 2 页为第 0 章 (scrbook)

图录第 2 页为第 0 章 (scrbook)

在我的 tex 项目中,图形列表有两页,因为我使用了 36 个图形。

我的文档类别是 scrbook。第 2 页有一个标题“第 0 章:图片列表”(见下图)。我想删除这个标题。可以吗?在此处输入图片描述

答案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}

相关内容