guide-preparation-vacances/creer-fichiers-tex.sh
2021-07-09 00:49:36 -04:00

14 lines
388 B
Bash
Executable file

#!/bin/bash
mkdir -p ./chapitres
for section in {1..3}
do
for chapitre in {1..4}
do
pandoc -F pandoc-minted -f markdown+fenced_code_attributes -t latex --listings --top-level-division=chapter -i "chapitre_${section}_${chapitre}.md" -o "./chapitres/chapitre_${section}_${chapitre}.tex"
done
done
pdflatex --shell-escape -synctex=1 -interaction=nonstopmode main.tex