diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-12-21 03:04:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-20 18:04:54 -0800 |
commit | 8f402beab922646d4c428b40a75fe4d140ab5e9e (patch) | |
tree | d805b8eabfe6a54c89ed90223f44b5535a1630bd /data | |
parent | 7e98562c04be19f533bc806a8525fe203d1ede58 (diff) | |
download | pandoc-8f402beab922646d4c428b40a75fe4d140ab5e9e.tar.gz |
LaTeX writer: support colspans and rowspans in tables. (#6950)
Note that the multirow package is needed for rowspans.
It is included in the latex template under a variable,
so that it won't be used unless needed for a table.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default.latex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/default.latex b/data/templates/default.latex index 169661582..c567278e3 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -255,6 +255,9 @@ $highlighting-macros$ $endif$ $if(tables)$ \usepackage{longtable,booktabs,array} +$if(multirow)$ +\usepackage{multirow} +$endif$ \usepackage{calc} % for calculating minipage widths $if(beamer)$ \usepackage{caption} |