When I compile the following code, pdflatex takes up 100% of one of my CPU and doesn't stop. I'm probably passing wrong arguments to overlayarea, since I have no idea what they should do (the Beamer_Guide doesn't mention them)
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{tabular}{c}
\begin{overlayarea}{\textwidth}{0cm}
\only<1>{hi}
\only<2>{there}
\end{overlayarea}
\end{tabular}
\end{frame}
\end{document}
So, why does this clog my CPU and what are the two arguments in overlayarea supposed to do?
\begin{overlayarea}{⟨area width⟩}{⟨area height⟩} ⟨environment contents⟩ \end{overlayarea}– Gonzalo Medina Mar 20 '11 at 18:061cmfor each length argument.) – Andrew Stacey Mar 20 '11 at 18:10tabularinside theoverlayareaalso works. – Gonzalo Medina Mar 20 '11 at 18:15