minor style improvements

This commit is contained in:
2024-06-21 18:14:40 +02:00
parent 0cff9d6799
commit 2c724598e9
9 changed files with 35 additions and 7 deletions

16
gallery.bash Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
echo
echo "Generating gallery PDFs"
set -- ./gallery/*.typ
cnt="$#"
i=1
for f
do
f2="${f/typ/pdf}"
echo "($i/$cnt) $f -> $f2"
typst c --root ./ "$f" "$f2"
i=$((i+1))
done