Skip to content
Snippets Groups Projects
Select Git revision
  • d3717d5da3e5254320a82ac39e8b76a0f84692fe
  • master default protected
  • exec_auto_adjust_trace
  • let_variables
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.0
  • v1.0.0
10 results

Makefile

  • user avatar
    Michael Leuschel authored
    d3717d5d
    History
    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