Page LayoutHow to change vertical space in abstract

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
ldecaro
Posts: 4
Joined: Thu Jan 08, 2009 9:11 pm

How to change vertical space in abstract

Post by ldecaro »

Hello everyone.

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

How to change vertical space in abstract

Post by gmedina »

Hi,

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}
Of course, as the argument of \vspace* you can use the length that better suits your needs instead of -.5em.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
ldecaro
Posts: 4
Joined: Thu Jan 08, 2009 9:11 pm

Re: How to change vertical space in abstract

Post by ldecaro »

No kidding :)

You saved my day!

Thank you very much.

Regards,


:Luiz.
Post Reply