Removed \strut
at beginning of table cells.
This fixes a problem with alignment of lists in table cells (closes #3436). The `\strut` at the end seems to be enough to avoid the too-close spacing that motivated addition of the strut in #1573.
This commit is contained in:
parent
35922ffa32
commit
f3d81056d6
1 changed files with 1 additions and 1 deletions
|
@ -725,7 +725,7 @@ tableCellToLaTeX header (width, align, blocks) = do
|
|||
AlignDefault -> "\\raggedright"
|
||||
return $ ("\\begin{minipage}" <> valign <>
|
||||
braces (text (printf "%.2f\\columnwidth" width)) <>
|
||||
(halign <> "\\strut" <> cr <> cellContents <> "\\strut" <> cr) <>
|
||||
(halign <> cr <> cellContents <> "\\strut" <> cr) <>
|
||||
"\\end{minipage}") $$
|
||||
notesToLaTeX notes
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue