2020-08-12 14:42:12 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-04-13 11:18:43 +02:00
|
|
|
pushd /src
|
2020-09-02 14:57:04 +02:00
|
|
|
project_name=$(tamarin_db get project_name)
|
2022-04-13 11:18:43 +02:00
|
|
|
for tex in presentations/$project_name/*.tex
|
2020-09-02 14:57:04 +02:00
|
|
|
do
|
|
|
|
rubber --inplace --module=xelatex "$tex"
|
2022-04-13 10:58:15 +02:00
|
|
|
cp "${tex%.tex}.pdf" /dist/
|
2020-09-02 14:57:04 +02:00
|
|
|
# faire quelque chose pour le programme de la formation
|
|
|
|
done
|
2022-04-13 11:18:43 +02:00
|
|
|
popd
|
2020-09-02 14:57:04 +02:00
|
|
|
|