From 8ecf32a9054efbbe76a54dfda8350dc014f1bfa4 Mon Sep 17 00:00:00 2001 From: Michael Leuschel <leuschel@cs.uni-duesseldorf.de> Date: Sat, 12 May 2018 11:01:18 +0200 Subject: [PATCH] add Makefile with Latex generation --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64c930f --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +run: + jupyter notebook +rebuild: + ./gradlew shadowJar +install: + ./gradlew 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" \ No newline at end of file -- GitLab