Page Layout ⇒ How to change vertical space in abstract
How to change vertical space in abstract
I'm using the \begin{abstract} and \end{abstract} to define the abstract in my dissertation.
By default it writes on the top of the page the word Abstract, right? So far ok!
What I'd like to do is to change (reduce) the vertical space between the word Abstract (on top of the page) and the beginning of the text.
The changes must work _only_ for this section of the document.
Can anyone please help me out with this one? I appreciate any comments.
Thanks in advance,
:Luiz.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to change vertical space in abstract
you could use the \vspace* command, as the following example suggests:
Code: Select all
\documentclass{article}
\begin{document}
\begin{abstract}
\vspace*{-.5em}
text text text text text
\end{abstract}
\end{document}
Re: How to change vertical space in abstract

You saved my day!
Thank you very much.
Regards,
:Luiz.