matteorr/coco-analyze

Special characters in team name

Vaufreyd opened this issue · 1 comments

Hello,

First, thanks for sharing your great code with the community.

My issue: If I put some specific characters (like '_') in the team name, the generated tex won't compile with a "Miss inserted $" error. Solution could be to parse the team name for such specific characters and generate their latex counterparts ("_" in this case).

Thank you. Doms.

Hi Doms,

Thanks for pointing this out. As you can see here I replaced the _ in the annotation names with the escape character for latex, but forgot to do the same for the team name and version number.

Based on your suggestion and this link I updated the latex template to deal with special characters directly in latex without having to intercept them in python.

You can see the edits in this commit.

Should work now.