bd7c9eb32b
We now have LaTeX do the calculation, using `\tabcolsep`. So we should now have accurate relative column widths no matter what the text width. The default template has been modified to load the calc package if tables are used.
44 lines
901 B
Markdown
44 lines
901 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}[]{@{}c@{}}
|
|
\caption[Sample table.]{Sample table.\footnote{caption footnote}}\tabularnewline
|
|
\toprule
|
|
\begin{minipage}[b]{(\columnwidth - 0\tabcolsep) * \real{0.17}}\centering
|
|
Fruit\footnote{header footnote}\strut
|
|
\end{minipage}\tabularnewline
|
|
\midrule
|
|
\endfirsthead
|
|
\toprule
|
|
\begin{minipage}[b]{(\columnwidth - 0\tabcolsep) * \real{0.17}}\centering
|
|
Fruit{}\strut
|
|
\end{minipage}\tabularnewline
|
|
\midrule
|
|
\endhead
|
|
\begin{minipage}[t]{(\columnwidth - 0\tabcolsep) * \real{0.17}}\centering
|
|
Bans\footnote{table cell footnote}\strut
|
|
\end{minipage}\tabularnewline
|
|
\bottomrule
|
|
\end{longtable}
|
|
|
|
dolly\footnote{doc footnote}
|
|
```
|