forked from tum-pbs/pbdl-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make-pdf.sh
executable file
·47 lines (33 loc) · 1.32 KB
/
make-pdf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# source this file with "." in a shell
# note this script assumes the following paths/versions
# python3.7
# /Users/thuerey/Library/Python/3.7/bin/jupyter-book
echo
echo WARNING - still requires one manual quit of first pdf/latex pass, use shift-x to quit
echo
# do clean git checkout for changes from json-cleanup-for-pdf.py?
# git checkout diffphys-code-burgers.ipynb diffphys-code-ns.ipynb diffphys-code-sol.ipynb physicalloss-code.ipynb bayesian-code.ipynb supervised-airfoils.ipynb reinflearn-code.ipynb
# warning - modifies notebooks!
python3.7 json-cleanup-for-pdf.py
# clean / remove _build dir ?
# GEN!
/Users/thuerey/Library/Python/3.7/bin/jupyter-book build . --builder pdflatex
cd _build/latex
#mv book.pdf book-xetex.pdf # failed anyway
rm -f book-in.tex sphinxmessages-in.sty book-in.aux book-in.toc
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
python3.7 ../../fixup-latex.py
# generates book-in2.tex
# remove unicode chars via unix iconv
iconv -c -f utf-8 -t ascii book-in2.tex > book.tex
# finally run pdflatex, now it should work:
# pdflatex -recorder book
pdflatex book
pdflatex book
# for convenience, archive results in main dir
mv book.pdf ../../book-pdflatex.pdf
tar czvf ../../pbdl-latex-for-arxiv.tar.gz *