When using the beamer \visible command inside a tabular environment, beamer adds an extra vertical space before the text. For example, in the following code, beamer adds an empty line before the word World in the second row. Can this be avoided?
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{tabular}{|p{1cm}|p{1cm}|}
\hline
1 & Hello World \\
\hline
2 & \visible<2->{Hello World} \\
\hline
\end{tabular}
\end{frame}
\end{document}
\hspace{.1mm}before the\visible..... – percusse Mar 11 '12 at 15:33\hspace{0pt}as well. – Alan Munn Mar 11 '12 at 17:54