在 LaTeX Beamerdocument 中使用 Longtable 包时,如何创建在包含表格内容的每张幻灯片上显示的表格标题?以下方法似乎不起作用:
\begin{frame}[allowframebreaks]{title}
\begin{longtable}{cc}
a & b \\ \endfirsthead
c & d \\ \endhead
fooooooooooo & Bar\\
fooooooooooo & Bar\\
...
\end{longtable}
\end{frame}
带有“c d”的标题行从未显示。这种行为似乎不对。
答案1
使用另一个包:
\documentclass{beamer}
\usepackage{xtab}
\begin{document}
\begin{frame}[plain,allowframebreaks]{title}
\tablefirsthead{a & b \\}
\tablehead{c & d \\}
\begin{xtabular}{cc}
fooooooooooo & Bar\\
fooooooooooo & Bar\\
...
\end{xtabular}
\end{frame}