Update with loading field files

This commit is contained in:
Hartmut Seichter 2023-11-08 21:23:24 +01:00
parent e11a484290
commit 467727392a
4 changed files with 36 additions and 82 deletions

View file

@ -1,8 +1,12 @@
table.pdf:
@echo "creating english version ..."
python ../../coursebuilder -s schema.yaml -m mod.cg.yaml -l en -f name id | pandoc -o table.pdf
table.en.pdf:
@echo "creating English version ..."
python ../../coursebuilder -s schema.yaml -m mod.cg.yaml -l en -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.en.pdf
all: table.pdf
table.de.pdf:
@echo "creating German version ..."
python ../../coursebuilder -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.de.pdf
all: table.en.pdf table.de.pdf
clean:
rm table.pdf
rm table.en.pdf table.de.pdf