smaller fixes for PDF generation
This commit is contained in:
parent
0588e40d8c
commit
9201ed678a
@ -36,15 +36,19 @@ reSkip.append( re.compile(r"detokenize.references.references" ) ); reSCnt.append
|
||||
#reSkip.append( re.compile(r"") ); reSCnt.append( 1 )
|
||||
|
||||
# ugly, manually fix citations in captions one by one
|
||||
# need manual IDs!
|
||||
recs = []; rect = []
|
||||
recs.append( re.compile(r"example prediction from ....hyperlink.cite.references:id6..WKA.20...." ) )
|
||||
rect.append( 'example prediction from {[}\\\\protect\\\\hyperlink{cite.references:id6}{WKA+20}{]}' ) # note, quad \ needed!
|
||||
|
||||
recs.append( re.compile(r"parametrized GAN {\[}.hyperlink{cite.references:id2}{CTS.21}{\]}" ) )
|
||||
rect.append( "parametrized GAN {[}\\\\protect\\\\hyperlink{cite.references:id2}{CTS+21}{]}" )
|
||||
|
||||
recs.append( re.compile(r"approach using continuous convolutions {\[}.hyperlink{cite.references:id12}{UPTK19}{\]}" ) )
|
||||
rect.append( "approach using continuous convolutions {[}\\\\protect\\\\hyperlink{cite.references:id12}{UPTK19}{]}" )
|
||||
# ID4 CTS
|
||||
recs.append( re.compile(r"parametrized GAN {\[}.hyperlink{cite.references:id4}{CTS.21}{\]}" ) )
|
||||
rect.append( "parametrized GAN {[}\\\\protect\\\\hyperlink{cite.references:id4}{CTS+21}{]}" )
|
||||
# ID8 WKA
|
||||
recs.append( re.compile(r"example prediction from ....hyperlink.cite.references:id8..WKA.20...." ) )
|
||||
rect.append( 'example prediction from {[}\\\\protect\\\\hyperlink{cite.references:id8}{WKA+20}{]}' ) # note, quad \ needed!
|
||||
# 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
|
||||
|
||||
|
@ -23,7 +23,7 @@ mv book.tex book-in.tex
|
||||
mv sphinxmessages.sty sphinxmessages-in.sty
|
||||
mv book.aux book-in.aux
|
||||
mv book.toc book-in.toc
|
||||
mv sphinxmanual.cls sphinxmanual-in.cls
|
||||
#mv sphinxmanual.cls sphinxmanual-in.cls
|
||||
|
||||
python3.7 ../../fixup-latex.py
|
||||
# generates book-in2.tex
|
||||
|
Loading…
Reference in New Issue
Block a user