major refactoring

* move all scripts not intended to be called directly to helpers/ dir
* introduce sequencer.py as replacement for various scripts
* introduce --save option to generate.py
* other smaller changes/bugfixes
This commit is contained in:
2022-03-09 15:52:02 +01:00
parent da116d7b01
commit 151f11d90b
18 changed files with 164 additions and 125 deletions

10
helpers/compile_presentation.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
set -e
dest_file="presentation_$(date +%Y-%m-%d).tex"
echo Compiling
mkdir -p data/presentation
cd data/presentation/
latexmk -pdf "../$dest_file"
ln -srnf "presentation_$(date +%Y-%m-%d).pdf" ../../presentation.pdf