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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.