I'm finishing my thesis in LaTeX, using class "book". I use a 1.5 line stretch with \renewcommand{\baselinestretch}{1.5}. Everything is ok, but I'd like the Abstract chapter (\chapter*{Abstract}) to fit in one page. There are 4 or 5 extra lines and I've almost achieved it by decreasing the marging between title and text (\vspace*{-1.1cm} just after the title) and the line stretch of the abstract (decreasing \renewcommand{\baselinestretch}{XX} and reseting it to 1.5 at the end of the abstract).
The problem is that I cannot avoid all lines to go to the next page without making the abstract page a bit weird (too small margin between title and text, too small stretch line...) and I think the easiest way to achieve that is to decrease the margin before the title.
Any idea? Thank you!
MWE:
\documentclass{book}
% Some dummy text
\usepackage{lipsum}
% Defult line stretch of all document
\renewcommand{\baselinestretch}{1.5}
% Starting document
\begin{document}
% The chapter I'd like to fit in one page
\renewcommand{\baselinestretch}{0.5} % Reduce line stretch
% \vspace*{-1.1cm} % doesn't work properly
\chapter*{Abstract}
\vspace*{-1.1cm} % Reduce space between title and text
\lipsum[2-4] % Dummy text
\lipsum[13]
\renewcommand{\baselinestretch}{1.5} % Restore line stretch
% A normal chapter whose behaviour I don't want to change
\chapter{Introduction}
\lipsum[6-20] % Dummy text
\end{document}
Peaso
\documentclass{...}and ending with\end{document}. – mafp Jun 05 '13 at 21:53titlesec. I'm sure one of these will solve your problem. Once you'd had some time to look at them, respond with some feedback as to their usefulness and why/if you need more help. – Werner Jun 05 '13 at 22:54