sq_01_python_intro/jupyter_book/Makefile

11 lines
248 B
Makefile
Raw Normal View History

all: html pdf
html:
jupyter-book build .
pdf:
jupyter-book build --builder latex .
cd _build/latex && sed -i -e 's/letterpaper/a4paper/' -e 's/\(Dr\. Christoph G\)/\\hspace{8.2em}\1/' python_intro.tex && make && cd ../..
clean:
rm -rf _build