Tamarin/hooks/build/texlive/xelatex

13 lines
275 B
Bash
Executable File

#!/usr/bin/env bash
pushd /src
project_name=$(tamarin_db get project_name)
for tex in presentations/$project_name/**/*.tex
do
rubber --inplace --module=xelatex "$tex"
cp "${tex%.tex}.pdf" /dist/
# faire quelque chose pour le programme de la formation
done
popd