Select Git revision
Makefile
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 685 B
run:
jupyter notebook
rebuild:
./gradlew shadowJar
install:
./gradlew installKernelSpec
PHOME=/Users/NAME/git_root/prob_prolog
installph:
./gradlew -PprobHome=$(PHOME) installKernelSpec
NOTEBOOKS = notebooks/tutorials/prob_solver_intro.ipynb \
notebooks/manual/ExternalFunctions.ipynb
latex:
for spec in $(NOTEBOOKS); do \
echo 'Generating Latex for: '; echo $$spec ; \
jupyter nbconvert $$spec --to latex ; \
done
echo "done"
slides:
jupyter nbconvert notebooks/presentations/SETS_RODIN18.ipynb --to slides --post serve
slidespdf:
jupyter nbconvert notebooks/presentations/SETS_RODIN18.ipynb --to latex
pdflatex notebooks/presentations/SETS_RODIN18.tex