Skip to content
Snippets Groups Projects
Commit 55dcb353 authored by Franck Dary's avatar Franck Dary
Browse files

In conllu2latex.py, deleted useless cline

parent 99aa9e78
No related branches found
No related tags found
No related merge requests found
......@@ -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] :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment