acl-org / easy2acl

Convert data from EasyChair for use with aclpub
GNU General Public License v2.0
7 stars 8 forks source link

Fixed broken LaTeX escaping in all_papers.tex #14

Open texttheater opened 3 years ago

texttheater commented 3 years ago

E.g., Haußer was being escaped to Hau\sser, which does not parse.

Solution: switched from unicode_tex.unicode_to_tex to pylatex.utils.escape_latex. This only escapes special characters, not non-ASCII characters, but there is no need to, we are using \usepackage[utf8]{inputenc} anyway.