Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions easy2acl.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
from csv import DictReader
from glob import glob
from shutil import copy, rmtree
from unicode_tex import unicode_to_tex
from pybtex.database import BibliographyData, Entry
from pylatex.utils import escape_latex
from PyPDF2 import PdfFileReader


def texify(string):
"""Return a modified version of the argument string where non-ASCII symbols have
been converted into LaTeX escape codes.
"""Return a modified version of the argument string where characters that
are special in LaTeX have been converted into LaTeX escape codes.

"""
return ' '.join(map(unicode_to_tex, string.split())).replace(r'\textquotesingle', "'")
return str(escape_latex(string))


#,----
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unicode_tex
pylatex
pybtex
PyPDF2