Kein Absatz zwischen aufeinanderfolgenden Kapiteln
**Wenn Chapter, Section, SubSection direkt nacheinander folgen, dann soll kein Abstand dazwischen sein. Zusätzlich gibt es weitere Anforderungen (siehe unten) die aber zweitranging sind.**
Ich danke im Vorasus. Marc.
Ich bin neu in der Community und hoffe auf Hilfe, da die Abgabe der Masterarbeit kurz bevorsteht :( Mein Minimalbeispiel ist hoffentlich gut genug.
Die Fakultät hat natürlich eine besondere Vorstellung, wie die Arbeit formatiert sein soll.
Mal abgesehen vom Font 'Times New Roman' - das ist ein anderes Problemen, der Standard-Font gefällt mir auch ganz gut.
**Anforderungen für**
*Chapter*
- Font-Größe: 14pt (ich nutze large in titleformat)
- Einzug hängend 1,5 cm
- linksbündig Unterschneidung ab 14 pt
- fett Zeilenabstand genau 18 pt
- Abstand nach 8 pt Absatzkontrolle
- Seitenumbruch oberhalb
- Absätze nicht trennen
- keine Silbentrennung
- Tabstop 1,5 cm
*Section / SubSection / Paragraph*
- wie Chypter doch mit folenden Anpassungen
- Font-Größe: 12pt (ich nutze normalsize in titleformat)
- Abstand vor 30 pt
- kein Seitenumbruch oberhalb
rigidchapters kommt schon in die richtige Richtung und führt Chapter und Section zusammen, doch bei Mehrzeiligen Überschriften wird dann Section überschrieben. Ich weiß man sollte gar nicht zweizeilige Überschriften nutzen, dass kann ich zur Not noch beheben.
**Beispiel**
\documentclass{scrreprt}
\usepackage{setspace}
\onehalfspacing
\usepackage{lipsum}
\usepackage[rigidchapters]{titlesec}
% source: http://tex.stackexchange.com/questions/59726/change-size-of-section-subsection-subsubsection-paragraph-and-subparagraph-ti
\titleformat{\chapter}
{\normalfont\large\bfseries}{\thechapter}{1em}{}
\titleformat{\section}
{\normalfont\normalsize\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\normalsize\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}
{\normalfont\normalsize\bfseries}{\thesubsubsection}{1em}{}
\titleformat{\paragraph}[runin]
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titleformat{\subparagraph}[runin]
{\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{}
\titlespacing\chapter{0pt}{0pt plus 4pt minus 2pt}{8pt plus 2pt minus 2pt}
\titlespacing\section{0pt}{30pt plus 4pt minus 2pt}{8pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{30pt plus 4pt minus 2pt}{8pt plus 2pt minus 2pt}
\titlespacing\subsubsection{0pt}{30pt plus 4pt minus 2pt}{8pt plus 2pt minus 2pt}
\begin{document}
\chapter{Chapter One}
\lipsum[1-2]
\chapter{Chapter Two after chapter This is very long long long title super long title}
\section{Consecutive Section right after chapter This is very long long long title super long title}
\subsection{Consecutive SubSection right after section after chapter This is very long long long title super long title}
\lipsum[1-2]
\chapter{Chapter Three}
\section{Consecutive Section right after chapter}
\lipsum[1-2]
\section{Yet another section}
\subsection{Consecutive SubSection right after section}
\lipsum[1-2]
\end{document}
----------
Keywords: rigidchapters consecutive chapter section subsection