I need to prepare a tabular where the third and the sixth rows appear only in the second slide, for their elements are the answer of the exercise. I attempted putting a general \onslide<2-> in > but it doesn't work. Can someone fix that for me, please?
\documentclass{beamer}
\usepackage{tabu}
\begin{document}
\begin{frame}
\frametitle{Activity}
\begin{center}
\renewcommand{\arraystretch}{1.25}
\begin{tabu} to \linewidth
{*{3}{>{\bfseries}X[0.2rm]X[lm$]>{\color{Blue}}X[lm$]}}
% Exercise
1) & 3x + 6 & 3(x+2) & 2) & 5x+15 & 5(x+3) & 3) & 4x+20 & 4(x+5) \cr
\end{tabu}
\end{center}
\end{frame}
\end{document}
arrayand why<is used instead of>. – Logos Apr 12 '18 at 13:03