I am editing a collection of documents, a few of which the author has given such long titles that, when they are formatted as chapters, the heading overruns the page. The following code should suffice to reproduce this situation:
\documentclass[12pt,letterpaper]{book} % 12pt is a manuscript requirement.
% I am using the following three packages with pdflatex.
\usepackage[utf8x]{inputenx}
\usepackage[T1]{fontenc}
\usepackage[german]{babel}
\usepackage[top=3.0in,head=2.0in,inner=2.0in,outer=1.0in,bottom=1.0in,nofoot]{geometry} % Manuscript requirement.
\usepackage[none]{hyphenat} % Manuscript requirement.
\usepackage{microtype} % Provides ligature disabling in pdflatex (manuscript requirement) among other things.
\usepackage[document]{ragged2e} % Manuscript requirement.
\usepackage[doublespacing]{setspace} % Manuscript requirement.
\usepackage{textcomp}
\usepackage{tgheros} % The font that I intend to use.
\sloppy % Helps package hyphenat.
\renewcommand*{\familydefault}{\sfdefault}
\DisableLigatures[f]{encoding=T1} % Manuscript requirement.
\begin{document}
\selectlanguage{german}
\renewcommand*{\chaptername}{\textnumero{}}
\renewcommand*{\thechapter}{592}
\chapter{>>Kleiner Ärger -- vom Mantel der Zufriedenheit überdeckt<< (Beweise für die Unmenschlichkeit und Verlogenheit der >>Arbeiter<<-Annonce in >>Welt<< und >>Spiegel<<) (von~Schnitzler, 2.~August~1971)}
\textlangle{}Text\textrangle{}
\end{document}
Obnoxious in more ways than one, no?
In this situation I would prefer to break the heading to the next page at the bottom margin. Does anyone have ideas on how to do this?
