From 1475299c9aebfe3e47c135d6653202db3b2f6696 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 28 Sep 2016 11:33:33 +0200 Subject: LaTeX template: fix footnotes in tables. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This requires the footnote package, which is imported only if present. See #208. Thanks to Václav Haisman. --- default.latex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/default.latex b/default.latex index 0128d998a..3ff8be2ab 100644 --- a/default.latex +++ b/default.latex @@ -123,6 +123,8 @@ $if(verbatim-in-note)$ $endif$ $if(tables)$ \usepackage{longtable,booktabs} +% Fix footnotes in tables (requires footnote package) +\IfFileExists{footnote.sty}{\usepackage{footnote}\makesavenoteenv{long table}}{} $endif$ $if(graphics)$ \usepackage{graphicx,grffile} -- cgit v1.2.3