Graphics, Figures & TablesSpace between text and graphic

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
vegeta1987
Posts: 4
Joined: Fri Dec 30, 2011 10:00 pm

Space between text and graphic

Post by vegeta1987 »

Hi, Everybody

I am new in latex's world. I am making a presentation in beamer. So How can I do for separeting more the text and figure in that context:

Code: Select all

\begin{frame}
\begin{overlayarea}{\textwidth}{\textheight}
\uncover<1> {\alert<1>{There is a text here.
\includegraphics[width=0.8\textwidth,height=0.5\textheight]{Figures/figure.jpg}
}}\\
\uncover<2> {\alert<2>{There is another text here.}}\\
\uncover<3> {\alert<3>{And one more text here.}}\\
\end{overlayarea}
\end{frame}
So, in the uncover<1> there must be a text and a figure, so after compiling, the space between is just a bit.

Thanks for you help.
Last edited by Stefan Kottwitz on Sun Jan 08, 2012 2:45 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Space between text and graphic

Post by Stefan Kottwitz »

Hi,

you could break the line between the text and the image, with adding some space, such as

Code: Select all

There is a text here.\\[2ex]
\includegraphics{...}
Stefan
LaTeX.org admin
Post Reply