aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/latex-compile
blob: 9717db01b91b9f9908b0be6800752c8eba7e6aa8 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh -eu

if ! {
      pdflatex -halt-on-error "$1" \
      || xelatex -halt-on-error "$1";
     }
then cat
fi