Skip to content

Commit

Permalink
Fix #9313
Browse files Browse the repository at this point in the history
  • Loading branch information
jfbu committed Jun 8, 2021
1 parent de64bfd commit 7cc87d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/writers/latex.py
Expand Up @@ -966,7 +966,7 @@ def visit_row(self, node: Element) -> None:
# insert suitable strut for equalizing row heights in given multirow
self.body.append(r'\sphinxtablestrut{%d}' % cell.cell_id)
else: # use \multicolumn for wide multirow cell
self.body.append(r'\multicolumn{%d}{|l|}\sphinxtablestrut{%d}}' %
self.body.append(r'\multicolumn{%d}{|l|}{\sphinxtablestrut{%d}}' %
(cell.width, cell.cell_id))

def depart_row(self, node: Element) -> None:
Expand Down

0 comments on commit 7cc87d8

Please sign in to comment.