Dieses Repository wurde am 2021-10-23 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
2018-02-20 20:26:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
hauptdatei=LiTerm
|
2018-02-24 12:10:55 +00:00
|
|
|
format=eps
|
2018-02-20 20:26:22 +00:00
|
|
|
build="xelatex -file-line-error -interaction=batchmode -synctex=-4 -output-directory=build $hauptdatei"
|
2018-02-24 12:10:55 +00:00
|
|
|
dot "-T$format" -O bilder/*.dot
|
2018-02-21 07:42:10 +00:00
|
|
|
for bild in bilder/*.svg
|
2018-02-24 12:10:55 +00:00
|
|
|
do convert $bild "$bild.$format"
|
2018-02-21 07:42:10 +00:00
|
|
|
done
|
2018-02-20 20:26:22 +00:00
|
|
|
$build
|
|
|
|
biber --output-directory build $hauptdatei
|
|
|
|
$build
|
|
|
|
rm -f *.sav *.log
|
|
|
|
echo
|