mk
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 18 Sep 2026 10:57:24 +0100
changeset 1038 34d2cfb7761a
parent 752 1f1a293549c1
permissions -rwxr-xr-x
texupdate

#!/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