You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
510 B
13 lines
510 B
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
( cd "$(dirname "$0")"/../src
|
|
|
|
c="texfot xelatex -shell-escape -halt-on-error"
|
|
|
|
$c main.tex | sed '/Output written/d' | sed '/Rerun to get \/Page/d' | sed '/Warning: Citation/d' | sed '/Warning: Empty bib/d' | sed '/has changed/d' | sed '/Warning: There were/d' | sed '/biblatex Warning/d'
|
|
$c main.tex | sed '/Output written/d' | sed '/Warning: There were/d' | sed '/biblatex Warning/d'
|
|
$c main.tex
|
|
mv main.pdf ../main.pdf
|
|
) | sed '/This is/d' | sed '/texfot: invoking/d'
|
|
|