started vortrag & deps, added results of simulation

This commit is contained in:
Stefan Dresselhaus
2018-06-25 21:59:56 +02:00
parent c731a0f131
commit 6795c93f99
299 changed files with 137776 additions and 1 deletions

16
vortrag/Makefile Normal file
View File

@ -0,0 +1,16 @@
.PHONY: pdf
INPUT = vortrag.md
all: slides
slides: $(INPUT)
pandoc -f markdown+smart+emoji -t revealjs \
--template ./template.html \
--incremental \
--indented-code-classes=haskell \
--section-divs \
-o chemodiversity.html $(INPUT)
serve: chemodiversity.html
python3 -m http.server 8080