further unicode fixes

This commit is contained in:
NT
2021-08-19 11:03:36 +02:00
parent 9201ed678a
commit e0271ecb9a
2 changed files with 18 additions and 4 deletions

View File

@@ -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