2024-05-01 08:10:27 +02:00
|
|
|
|
|
|
|
coursebuilder := ../../coursebuilder
|
|
|
|
|
2023-11-08 21:23:24 +01:00
|
|
|
table.en.pdf:
|
|
|
|
@echo "creating English version ..."
|
2024-05-01 08:10:27 +02:00
|
|
|
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l en -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.en.pdf
|
2023-11-08 20:42:15 +01:00
|
|
|
|
2023-11-08 21:23:24 +01:00
|
|
|
table.de.pdf:
|
|
|
|
@echo "creating German version ..."
|
2024-05-01 08:10:27 +02:00
|
|
|
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml | pandoc --template pandoc-template/eisvogel.latex -o table.de.pdf
|
2023-11-08 21:23:24 +01:00
|
|
|
|
|
|
|
all: table.en.pdf table.de.pdf
|
2023-11-08 20:42:15 +01:00
|
|
|
|
|
|
|
clean:
|
2024-04-21 15:47:44 +02:00
|
|
|
rm -f table.en.pdf table.de.pdf
|
|
|
|
|
2024-05-01 14:58:41 +02:00
|
|
|
debug-template:
|
|
|
|
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml -l de -f name credits --template "$$name | $$credits"
|
2024-04-21 15:47:44 +02:00
|
|
|
|
2024-05-01 14:58:41 +02:00
|
|
|
debug-markdown:
|
|
|
|
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml mod.interactsys.yaml -l de -f name credits
|
2024-05-03 07:42:51 +02:00
|
|
|
|
|
|
|
debug-book:
|
|
|
|
python ${coursebuilder} -s schema.yaml -b book.yaml -l de
|
|
|
|
|
2024-04-21 15:47:44 +02:00
|
|
|
debug:
|
2024-05-01 08:10:27 +02:00
|
|
|
python ${coursebuilder} -s schema.yaml -m mod.cg.yaml -l de -f fields.yaml
|
2024-04-21 15:47:44 +02:00
|
|
|
|