v0.2.0: updates and minor fixes #4

Merged
HEL merged 6 commits from dev into main 2025-02-23 13:21:00 +00:00
Showing only changes of commit a929f506ac - Show all commits

10
gallery.bash Normal file → Executable file
View File

@ -16,7 +16,7 @@ cnt="$#"
i=1
for f
do
f2="${f/typ/png}"
f2="${f%.typ}.png"
echo "($i/$cnt) $f -> $f2"
typst c --root ./ "$f" "$f2"
i=$((i+1))
@ -27,12 +27,12 @@ then
echo
echo "Generating gallery PDFs"
set -- ./gallery/*.typ
cnt="$#"
files=$(find ./gallery -type f -name "*.typ")
cnt=$(echo "$files" | wc -l)
i=1
for f
for f in $files
do
f2="${f/typ/pdf}"
f2="${f%.typ}.pdf"
echo "($i/$cnt) $f -> $f2"
typst c --root ./ "$f" "$f2"
i=$((i+1))