diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/LaTeX.hs b/src/Text/Pandoc/Writers/LaTeX.hs index 345ebe387..e1c6d186d 100644 --- a/src/Text/Pandoc/Writers/LaTeX.hs +++ b/src/Text/Pandoc/Writers/LaTeX.hs @@ -913,7 +913,7 @@ tableCellToLaTeX header numcols (width, align, blocks) = do return $ "\\begin{minipage}" <> valign <> braces (text (printf "(\\columnwidth - %d\\tabcolsep) * \\real{%.2f}" - (numcols - 1) width)) <> + (2 * (numcols - 1)) width)) <> halign <> cr <> cellContents <> cr <> "\\end{minipage}" -- (\columnwidth - 8\tabcolsep) * \real{0.15} |