mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
0088b776bc
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
348 B
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}