2022-10-10 11:13:41 +02:00
|
|
|
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
|
2023-04-11 13:49:33 +02:00
|
|
|
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 ../..
|
2022-10-10 11:13:41 +02:00
|
|
|
clean:
|
|
|
|
rm -rf _build
|
2023-04-11 13:49:33 +02:00
|
|
|
|