
何をしても、タイトルと実際のリストの間のスペースが小さすぎるという問題が発生しています。ただし、この問題はリストのリストに関してのみ発生します。他のすべてのリスト (テーブルのリストなど) には適切なスペースがあります (画像を参照)。ちなみに、tocstyle
私はパッケージを使用しています。listings
ここで私が何を間違っているのか分かりますか?
\documentclass[paper = a4, 12pt, twoside, parskip, toc = bibliography, openany]{scrbook}
\usepackage{setspace}
\usepackage{tocstyle}
\usepackage{listings}
\usepackage{hyperref}
\begin{document}
%% Table of contents
\setstretch{0.9}
\tableofcontents
\newpage
%% List of ToDos
\listoftodos
\newpage
%% List of tables
\phantomsection
\addcontentsline{toc}{chapter}{Tabellenverzeichnis}
\let\LaTeXStandardClearpage\clearpage
\let\clearpage\relax
\listoftables
\vspace*{0.5cm}
\addcontentsline{toc}{chapter}{Quellcodeverzeichnis}
\lstlistoflistings
\let\clearpage\LaTeXStandardClearpage
\newpage
\end{document}