From 8f402beab922646d4c428b40a75fe4d140ab5e9e Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Mon, 21 Dec 2020 03:04:54 +0100 Subject: 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. --- data/templates/default.latex | 3 +++ 1 file changed, 3 insertions(+) (limited to 'data') 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} -- cgit v1.2.3