9 Zeilen
240 B
Bash
9 Zeilen
240 B
Bash
|
#!/bin/bash
|
||
|
hauptdatei=LiTerm
|
||
|
build="xelatex -file-line-error -interaction=batchmode -synctex=-4 -output-directory=build $hauptdatei"
|
||
|
dot -Teps -O bilder/*.dot
|
||
|
$build
|
||
|
biber --output-directory build $hauptdatei
|
||
|
$build
|
||
|
rm -f *.sav *.log
|
||
|
echo
|