From bd7c9eb32be7c5499f4a50cb4b5f138f9eb919e8 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 29 Oct 2020 12:10:05 -0700 Subject: LaTeX writer: Improved calculation of table column widths. 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. --- data/templates/default.latex | 1 + 1 file changed, 1 insertion(+) (limited to 'data') diff --git a/data/templates/default.latex b/data/templates/default.latex index 80f6a7feb..4cac0a7cc 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -257,6 +257,7 @@ $highlighting-macros$ $endif$ $if(tables)$ \usepackage{longtable,booktabs} +\usepackage{calc} % for calculating minipage widths $if(beamer)$ \usepackage{caption} % Make caption package work with longtable -- cgit v1.2.3