mk
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 10 Sep 2025 15:57:21 +0100
changeset 983 ed8d8ba2cb34
parent 752 c0bdd4ad69ca
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

subdirs=${1:-"slides handouts hws cws"} 

for sd in $subdirs; do
  cd $sd
  for fl in *.tex; do
     echo $fl 
     xelatex $fl | pr -to4
  done
  cd ..
done