I am using the setspace package to double space my document. Unfortunately, this also formats the chapter and section headings to be double spaced which, because of the large font size, leaves a LOT of space between the lines.
Is there an easy way to work around this?
I have checked the setspace.sty file (version 6.7) but there were no clues there.
I realise that I could use the \singlespacing and \doublespacing commands before and after each heading, but there's surely got to be a more intelligent way to do it...
My document currently looks something like this:
Code: Select all
\documentclass{book}
\usepackage{setspace}
\begin{document}
%
\include{front_page}
\include{acknowledgements}
\tableofcontents{}
%
\doublespacing
\include{chapter1}
\include{chapter2}
\include{chapter3}
\end{document}