ich habe eine Frage zu meinem Inhalts- bzw. Abbildungsverzeichnis. Ich möchte, dass beim Inhaltsverzeichnis und beim Abbildungsverzeichnis der Abstand zwischen Überschrift und Beginn des Verzeichnisses genau so groß ist wie der Abstand zwischen den Kapitelüberschriften und Text. Hier mein Minimalbeispiel:
\documentclass[12pt,a4paper,bibliography=totoc]{scrartcl} \usepackage[ngerman]{babel} \usepackage[utf8]{inputenc} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{graphicx} \usepackage{mathtools} \usepackage{mathrsfs} \usepackage{amsthm} \usepackage{microtype} \usepackage{fancyhdr} \usepackage{tabularx} \usepackage{stmaryrd} \usepackage{geometry} \usepackage{setspace} \usepackage[right]{eurosym} \usepackage[printonlyused]{acronym} \usepackage{subfig} \usepackage{floatflt} \usepackage[usenames,dvipsnames]{color} \usepackage{colortbl} \usepackage{paralist} \usepackage{float} \usepackage{array} \usepackage{titlesec} \usepackage{parskip} \usepackage[right]{eurosym} \usepackage{picins} \usepackage[subfigure,titles]{tocloft} \usepackage[pdfpagelabels=true]{hyperref} \usepackage{caption} \bibliographystyle{alphadin} \usepackage{listings} \lstset{basicstyle=\footnotesize, captionpos=b, breaklines=true, showstringspaces=false, tabsize=2, frame=lines, numbers=left, numberstyle=\tiny, xleftmargin=2em, framexleftmargin=2em} \makeatletter \def\l@lstlisting#1#2{\@dottedtocline{1}{0em}{1em}{\hspace{1,5em} Lst. #1}{#2}} \makeatother \geometry{a4paper, top=20mm, left=30mm, right=30mm, bottom=25mm, headsep=5mm, footskip=12mm} \numberwithin{equation}{subsection} \newcommand{\defgl}{\mathrel{=\!\!\mathop:}} \makeatletter %Abstand Text <-> Gleichung \g@addto@macro{\normalsize}{% \setlength{\abovedisplayskip}{8pt} \setlength{\abovedisplayshortskip}{4pt} \setlength{\belowdisplayskip}{8pt} \setlength{\belowdisplayshortskip}{4pt}} \makeatother \begin{document} \newtheoremstyle{normal}% normale Schrift {7pt}% hSpace abovei {4pt}% hSpace belowi {\normalfont}% hBody fonti %normalfont für normale Schrift {}% hIndent amounti1 {\bfseries}% hTheorem head fonti {.}% Punctuation after theorem headi {0.8em}% hSpace after theorem headi2 {\bfseries{\thmname{#1}\thmnumber{ #2}\thmnote{ \hspace{0.5em}(#3)}}}% hTheorem head spec (can be left \newtheoremstyle{kursiv}% normale Schrift {7pt}% hSpace abovei {4pt}% hSpace belowi {\itshape}% hBody fonti %normalfont für normale Schrift {}% hIndent amounti1 {\bfseries}% hTheorem head fonti {.}% Punctuation after theorem headi {0.8em}% hSpace after theorem headi2 {\bfseries{\thmname{#1}\thmnumber{ #2}\thmnote{ \hspace{0.5em}(#3)}}}% hTheorem head spec (can be left % Kopf- und Fusszeile \renewcommand{\sectionmark}[1]{\markright{#1}} \renewcommand{\leftmark}{\rightmark} \pagestyle{fancy} \lhead{} \chead{} \rhead{\thesection\space\contentsname} \cfoot{} \rfoot{\ \linebreak Seite \thepage} \renewcommand{\headrulewidth}{0.4pt} \renewcommand{\footrulewidth}{0.4pt} \setkomafont{section}{\large\bf} %Größe der Überschrift \setkomafont{subsection}{\normalsize\bf} %Zeilenabstand \makeatletter \newcommand{\MSonehalfspacing}{% \setstretch{1.44}% default \ifcase \@ptsize \relax % 10pt \setstretch {1.448}% \or % 11pt \setstretch {1.399}% \or % 12pt \setstretch {1.433}% \fi } % ---------------------------------------------------------------------------------------------------------- % Inhalt % ---------------------------------------------------------------------------------------------------------- % Abstände Überschrift \titlespacing{\section}{0pt}{0pt plus 2pt minus 2pt}{0pt plus 2pt minus 2pt} \titlespacing{\subsection}{0pt}{0pt plus 2pt minus 2pt}{0pt plus 2pt minus 2pt} \titlespacing{\subsubsection}{0pt}{0pt plus 2pt minus 2pt}{0pt plus 2pt minus 2pt} % Kopfzeile \renewcommand{\sectionmark}[1]{\markright{#1}} \renewcommand{\subsectionmark}[1]{} \renewcommand{\subsubsectionmark}[1]{} \lhead{Kapitel \thesection} \rhead{\rightmark} %\MSonehalfspacing \theoremstyle{normal} \newtheorem{meinedef}{Definition}[subsection] \theoremstyle{kursiv} \newtheorem{meinsatz}[meinedef]{Satz} \newtheorem{meinefolg}[meinedef]{Folgerung} \newtheorem{meinlemma}[meinedef]{Lemma} \normalsize \newpage \MSonehalfspacing \thispagestyle{empty} \tableofcontents \newpage \MSonehalfspacing \listoffigures \thispagestyle{empty} \newpage \MSonehalfspacing \renewcommand{\thesection}{\arabic{section}} \renewcommand{\theHsection}{\arabic{section}} \setcounter{section}{0} \pagenumbering{arabic} \setcounter{page}{1} \section{Einleitung} Bla Bla Bla \section{Einführung in die Funktionentheorie} Bla Bla Bla \subsection{Der $n$-dimensionale Raum $\mathbb{C}^n$} \captionof{figure}{Text zu keinem Bild} \end{document}
underCover