Tamarin/hooks/build/texlive/xelatex

12 lines
250 B
Plaintext
Raw Normal View History

2020-08-12 14:42:12 +02:00
#!/usr/bin/env bash
2020-09-02 14:57:04 +02:00
cd /src
project_name=$(tamarin_db get project_name)
for tex in $project_name/*.tex
do
rubber --inplace --module=xelatex "$tex"
cp "${tex#.tex}.pdf" /dist/
# faire quelque chose pour le programme de la formation
done