“目录”标题的位置与其他标题的位置不同

“目录”标题的位置与其他标题的位置不同

我将 Latex 与scrbook文档类一起使用。

我注意到标题表中的内容与例如的位置不同图表目录或者第1章。它实际上位置稍微低一点。(我指的是页面上的绝对位置)

我想知道这是否是一个“错误”以及如何纠正它。

问题依然存在

下面的答案非常有用!我仔细扩展了 MWE,发现了问题:

我向 scrbook 包添加了一些选项,发现这些选项产生了所描述的行为。(我对 scrpage2 的第一次编辑是错误的。)

\documentclass[headsepline,
               footsepline,
               parskip=half
               ]{scrbook}

\begin{document}
\tableofcontents
\listoffigures
\listoftables

\chapter{First chapter}
\begin{figure}[ht]\caption{Figure one}\end{figure}
\begin{table}[ht]\caption{Table one}\end{table}
\section{Section 1}
Text
\section{Section 2}
Text
\section{Section 3}
Text
\section{Section 4}
Text
\section{Section 5}
Text

\chapter{Second chapter}
\begin{figure}[ht]\caption{Figure two}\end{figure}
\begin{table}[ht]\caption{Table two}\end{table}

\chapter{Chapter Number 3}
\section{Section 1}
Text
\section{Section 2}
Text
\section{Section 3}
Text
\section{Section 4}
Text
\section{Section 5}
Text

\chapter{Chapter Number 4}
\section{Section 1}
Text
\section{Section 2}
Text
\section{Section 3}
Text
\section{Section 4}
Text
\section{Section 5}
Text

\chapter{Chapter Number 5}
\section{Section 1}
Text
\section{Section 2}
Text
\section{Section 3}
Text
\section{Section 4}
Text
\section{Section 5}
Text

\chapter{Chapter Number 6}
\chapter{Chapter Number 7}
\chapter{Chapter Number 8}
\chapter{Chapter Number 9}

\chapter{Last chapter}
\begin{figure}[ht]\caption{Figure three}\end{figure}
\begin{table}[ht]\caption{Table onthreee}\end{table}
\end{document}

答案1

情况不应该如此,因为所有与内容相关的制作都是使用文档其余部分中的相同分段命令执行的。例如,\tableofcontents发出\chapter*{Contents},它与文本块和页面边界的高度与常规\chapter\chapter*命令相同。

以下 MWE 显示了这一点(仅剪切了相关页面):

在此处输入图片描述

\documentclass{scrbook}% http://ctan.org/pkg/koma-script
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\chapter{First chapter}
\begin{figure}[ht]\caption{Figure one}\end{figure}
\begin{table}[ht]\caption{Table one}\end{table}
\chapter{Second chapter}
\begin{figure}[ht]\caption{Figure two}\end{figure}
\begin{table}[ht]\caption{Table two}\end{table}
\chapter{Last chapter}
\begin{figure}[ht]\caption{Figure three}\end{figure}
\begin{table}[ht]\caption{Table onthreee}\end{table}
\end{document}

当然,除非你在目录的格式方面做了与其他元素不同的事。

相关内容