我有一张带边框的表格,我想逐行显示它。但是,边框渲染效果很差:
\documentclass{beamer}
\begin{document}
\frame{
\frametitle{Title}
\begin{tabular}{|c|c|}
\hline Row1L & Row1R \\ \hline\pause
Row2L & Row2R \\ \hline
\end{tabular}
}
\end{document}
呈现为
同时将第一行更改为
\hline Row1L & Row1R \pause \\ \hline
给我
改为第一张幻灯片。其他位置\pause
出现错误。\uncover
并\onslide
给出类似的问题。有没有办法摆脱第一个例子中的悬垂线或使第二个例子中的内容合理化?
谢谢!
答案1
一种可能性是使用
\\ \hline\noalign{\pause}
代码:
\documentclass{beamer}
\begin{document}
\frame{
\frametitle{Title}
\begin{tabular}{|c|c|}
\hline Row1L & Row1R \\ \hline\noalign{\pause}
Row2L & Row2R \\ \hline
\end{tabular}
}
\end{document}