I'm currently writing my thesis using TeXworks and MiKTeX.
I'm using the report document class. My problem is that I need to increase line spacing but some of my chapter and section headings are very long (sometimes spanning 5 lines which is half a page for a chapter heading). Headings such as this one I cannot change to be shorter (the work is already published) but I'd rather not have an entire page taken up with a heading.
I've tried \doublespacing in setspace as well as \linespread.
Any and all suggestions would be great.
\documentclass[12pt,a4paper,oneside,draft]{report}
\usepackage[lmargin=4.0cm, rmargin=2.5cm,tmargin=3cm,bmargin=2.5cm]{geometry}
\usepackage{mathpazo}
\usepackage{sectsty}
\usepackage{setspace}
\allsectionsfont{\scshape}
\doublespacing
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\include{chapters/Chapter1}
\include{chapters/Chapter2}
\include{chapters/Chapter3}
\include{chapters/Chapter4}
\include{chapters/Chapter5}
\end{document}

It is always best to compose a fully compilable MWE that illustrates the problem including the
– yo' Feb 08 '12 at 23:59\documentclassand the appropriate packages so that those trying to help don't have to recreate it.