Files
Albert Krewinkel 0088b776bc LaTeX writer: do not use longtable foot with Beamer
The table foot is made part of the table body, as otherwise it won't
show up in the output. The root cause for this is that longtable cannot
detect page breaks in Beamer.

Fixes: #8638
2023-02-22 09:26:26 +01:00

348 B

Beamer tables must not use longtable footer

% pandoc -t beamer
| fruit   | price |
|---------|------:|
| apple   | 2.05  |
| oranges | 4.25  |
^D
\begin{frame}
\begin{longtable}[]{@{}lr@{}}
\toprule\noalign{}
fruit & price \\
\midrule\noalign{}
\endhead
apple & 2.05 \\
oranges & 4.25 \\
\bottomrule\noalign{}
\end{longtable}
\end{frame}