Skip to content

Commit

Permalink
Make tables fit better in one column
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Jun 4, 2024
1 parent c57c8b7 commit cb7eecb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/python/latex_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ def build_table1(
"""
# Table overall results
table = """% Do not edit. This file is automatically generated.
\\begin{tabular}{l|c c|c c|c c}
Tool &
\\multicolumn{2}{c|}{Correct Merges} &
\\multicolumn{2}{c|}{Unhandled Merges} &
\\multicolumn{2}{c}{Incorrect Merges} \\\\
\\begin{tabular}{l|c c|c c|c c|}
Tool & \\multicolumn{6}{c|}{Merges} \\\\ \\cline{2-7}
& \\multicolumn{2}{c|}{Correct} &
\\multicolumn{2}{c|}{Unhandled} &
\\multicolumn{2}{c|}{Incorrect} \\\\
& \\# & \\% & \\# & \\% & \\# & \\% \\\\
\\hline\n"""
total = len(result_df)
Expand Down

0 comments on commit cb7eecb

Please sign in to comment.