guide-preparation-vacances/creer-fichiers-tex.sh

15 lines
388 B
Bash
Raw Normal View History

#!/bin/bash
2021-07-09 04:49:36 +00:00
mkdir -p ./chapitres
for section in {1..3}
do
for chapitre in {1..4}
do
2021-07-09 04:49:36 +00:00
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