From 55dcb353980c81d3371c36f70a0745baa5c4f13a Mon Sep 17 00:00:00 2001 From: Franck Dary <franck.dary@lis-lab.fr> Date: Fri, 2 Jul 2021 11:18:27 +0200 Subject: [PATCH] In conllu2latex.py, deleted useless cline --- scripts/conllu2latex.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/conllu2latex.py b/scripts/conllu2latex.py index 3948576..2967aeb 100755 --- a/scripts/conllu2latex.py +++ b/scripts/conllu2latex.py @@ -108,7 +108,6 @@ if __name__ == "__main__" : partSizes = [-ranges[parts[partId][0]][0]+ranges[parts[partId][-1]][1]+1 for partId in range(len(parts))] - #print("\\newcolumntype{x}[0]{>{\centering\\arraybackslash}m{2.2mm}}") print("\\begin{figure}[t]") print("\centering") print("\\footnotesize") @@ -116,7 +115,6 @@ if __name__ == "__main__" : print("\\begin{tabular}{|l|%s|}"%("|".join(["c"]*max(partSizes)))) for partId in range(len(parts)) : if partId != 0 : - print("\cline{1-%d}\n"%(partSizes[partId]+1)) print("\multicolumn{0}{c}{}\\\\") print("\cline{1-%d}\n"%(partSizes[partId]+1)) for i in range(len(columns))[::-1] : -- GitLab