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}
Thanks for you help.