Consider the following:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\column{.5\textwidth}
\only<1->{Why does this move? :-(}
\column{.5\textwidth}
\only<2->{
\[\int\]\[\int\]\[\int\]\[\int\]\[\int\]\[\int\]
}
\end{columns}
\end{frame}
\end{document}
Why does the line of text move down from the first page to the second?
What is the proper way to avoid this?
\onslidecan have an optional*or a+, so that it can act like\visibleor\uncover. And the argument can also be missing, then all the follwoing text will be in the overlay or not – Feb 15 '12 at 16:59