pandoc/test/command/5367.md
2020-11-25 15:49:17 -08:00

39 lines
697 B
Markdown

```
% pandoc -t latex
hello[^1]
: Sample table.[^2]
-----------
Fruit[^3]
-----------
Bans[^4]
-----------
dolly[^5]
[^1]: doc footnote
[^2]: caption footnote
[^3]: header footnote
[^4]: table cell footnote
[^5]: doc footnote
^D
hello\footnote{doc footnote}
\begin{longtable}[]{@{}
>{\centering\arraybackslash}p{(\columnwidth - 0\tabcolsep) * \real{0.17}}@{}}
\caption[Sample table.]{Sample table.\footnote{caption footnote}}\tabularnewline
\toprule
Fruit\footnote{header footnote} \\ \addlinespace
\midrule
\endfirsthead
\toprule
Fruit{} \\ \addlinespace
\midrule
\endhead
Bans\footnote{table cell footnote} \\ \addlinespace
\bottomrule
\end{longtable}
dolly\footnote{doc footnote}
```