further unicode fixes
This commit is contained in:
@@ -47,8 +47,6 @@ rect.append( 'example prediction from {[}\\\\protect\\\\hyperlink{cite.reference
|
||||
# ID14 UPTK
|
||||
recs.append( re.compile(r"approach using continuous convolutions {.}.hyperlink{cite.references:id14}{UPTK19}{.}" ) )
|
||||
rect.append( "approach using continuous convolutions {[}\\\\protect\\\\hyperlink{cite.references:id14}{UPTK19}{]}" )
|
||||
continuous convolutions {\[}.hyperlink{cite.references:id12}{UPTK19}{\]}" ) )
|
||||
continuous convolutions {\[}\hyperlink{cite.references:id14}{UPTK19}{]}
|
||||
|
||||
# fixup unicode symbols
|
||||
|
||||
@@ -59,11 +57,27 @@ recs.append( re.compile(r"Φ") ) # phiflow , ... differentiable simulation frame
|
||||
rect.append( "$\\\\phi$" )
|
||||
|
||||
recs.append( re.compile(r"“") ) # "..."
|
||||
rect.append( "\'\'" )
|
||||
rect.append( "``" )
|
||||
|
||||
recs.append( re.compile(r"”") )
|
||||
rect.append( "\'\'" )
|
||||
|
||||
recs.append( re.compile(r"–") )
|
||||
rect.append( "-" )
|
||||
|
||||
recs.append( re.compile(r"…") )
|
||||
rect.append( "..." )
|
||||
|
||||
recs.append( re.compile(r"‘") )
|
||||
rect.append( "'" )
|
||||
|
||||
recs.append( re.compile(r" ") ) # weird spaces in bib?
|
||||
rect.append( " " )
|
||||
|
||||
# recs.append( re.compile(r"") )
|
||||
# rect.append( "" )
|
||||
|
||||
|
||||
# fixup title , cumbersome...
|
||||
|
||||
# fix backslashes... saves at least typing a few of them! still needs manual \ -> \\ , could be done better
|
||||
|
||||
Reference in New Issue
Block a user