Hi there,
I'm using setstretch but I would like it to affect the whole text BUT the abstract. I've tried placing it right after it but it doesn't work.
Any ideas?
Agustin
Text Formatting ⇒ setstretch after the abstract
NEW: TikZ book now 40% off at Amazon.com for a short time.

setstretch after the abstract
Hi Agustin,
Welcome to the LaTeX community!
Without an example document “it doesn't work” is a rather vague information. I am guessing though, that you want/need double-spacing in your document but want to disable it for the abstract? The setspace package is the recommended package for this kind of things which provides an easy interface:
Regards
Welcome to the LaTeX community!
Without an example document “it doesn't work” is a rather vague information. I am guessing though, that you want/need double-spacing in your document but want to disable it for the abstract? The setspace package is the recommended package for this kind of things which provides an easy interface:
Code: Select all
\documentclass{article}
\usepackage{setspace}
\usepackage{lipsum}% for dummy text
\begin{document}
\doublespacing
\tableofcontents
\singlespacing
\begin{abstract}
\lipsum[1-2]
\end{abstract}
\doublespacing
\section{Foo Bar}
\lipsum
\section{Bar Foo}
\lipsum
\end{document}
site moderator & package author
Re: setstretch after the abstract
Great. Thanks for your answer...it worked!