aboutsummaryrefslogtreecommitdiff
path: root/test/command/8638.md
blob: e77396aa878fef0f0c5fd91860329809b1f71b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Beamer tables must not use longtable footer
```
% pandoc -t beamer
| fruit   | price |
|---------|------:|
| apple   | 2.05  |
| oranges | 4.25  |
^D
\begin{frame}
{\def\LTcaptype{} % do not increment counter
\begin{longtable}[]{@{}lr@{}}
\toprule\noalign{}
fruit & price \\
\midrule\noalign{}
\endhead
apple & 2.05 \\
oranges & 4.25 \\
\bottomrule\noalign{}
\end{longtable}
}
\end{frame}
```