17 lines
514 B
Makefile
17 lines
514 B
Makefile
all: html pdf
|
|
|
|
# Mit Copy&Paste eingefügte Bilder werden im Notebook BASE64 kodiert gespeichert.
|
|
# Für LaTeX müssen diese als Bild-Datei vorliegen was jupyter-book nicht kann
|
|
# -> selber die Bilder extrahieren
|
|
preprocess:
|
|
./extract_attachments.sh
|
|
|
|
html: preprocess
|
|
jupyter-book build .
|
|
pdf: preprocess
|
|
jupyter-book build --builder latex .
|
|
cd _build/latex && sed -i -e 's/letterpaper/a4paper/' -e 's/\(Dr\. Christoph G\)/\\hspace{8.2em}\1/' python_data_science.tex && make && cd ../..
|
|
clean:
|
|
rm -rf _build
|
|
|