15 lines
370 B
Makefile
15 lines
370 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 pdflatex .
|
||
|
clean:
|
||
|
rm -rf _build
|