Consider the following MWE:
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{Displacement of text}
\only<1-2>{This text will be displaced.}
\only<2>{Did you see it?}
\end{frame}
\end{document}
The \only<1-2> text is vertically displaced from its original position. Why does this happen?
I also tried this:
\only<1-2>{
\only<1-2>{This text will be displaced}.
\only<2>{Did you see it?}
}
but the same phenomenon happens.
I would like for the text not to "move": if it appears at some position, to stay there during the whole frame.
I searched the internet and tex.stackexchange, but I couldn't solve this.
overprintoroverlayareato ensure everything takes a constant space. Otherwise, it is displaced because there is less stuff on one slide than the other andbeameradjusts whatever is on the slide according to how much of it there is so that content is roughly vertically centred. – cfr Oct 29 '14 at 01:55\overlayareaworked! The documention of it is at section 9.5 of the Beamer User Guide. Thank you guys very much. – Larara Oct 29 '14 at 02:03