update notes

This commit is contained in:
2025-06-13 21:24:32 -07:00
parent 44fa26ba30
commit 134b13f5cc
5 changed files with 74 additions and 37 deletions

View File

@ -21,7 +21,7 @@ find . -maxdepth 1 -type d -name "lab-*" | while read lab_dir; do
# Generate PDF using pandoc
# Make sure 'pandoc' command is available in the image, which it is for pandoc/latex
image_dir="$lab_dir"
pandoc "$markdown_file" -s -o "$pdf_file" --pdf-engine=pdflatex --resource-path "$image_dir" -V geometry:margin=0.5in
pandoc "$markdown_file" -s -o "$pdf_file" --pdf-engine=xelatex --resource-path "$image_dir" -V geometry:margin=0.5in
if [ $? -eq 0 ]; then
echo "Successfully generated $pdf_file"