In beamer, with the command \pause, you can show one table row at a time.
With tabular, it works perfectly but, with tlbr, it produces a strange output.
Compare the output of the following two frames.
See this post on TopAnswers TeX: https://topanswers.xyz/tex?q=2000.
\documentclass{beamer}
\usepackage{tabularray}
\begin{document}
\begin{frame}{With tabular works}
\begin{tabular}{cc}
first & tabular\pause \\
second & tabular \\
\end{tabular}
\end{frame}
\begin{frame}{With tblr doesn't work}
\begin{tblr}{cc}
first & tblr\pause \\
second & tblr \\
\end{tblr}
\end{frame}
\end{document}
In
beamer, with the command\pause, you can show one table row at a time.With
tabular, it works perfectly but, withtlbr, it produces a strange output.Compare the output of the following two frames.
See this post on TopAnswers TeX: https://topanswers.xyz/tex?q=2000.