Ausgabeformat in Variable ausgelagert
Dieser Commit ist enthalten in:
Ursprung
755e23ed8e
Commit
3d241a403a
|
@ -1,9 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
hauptdatei=LiTerm
|
hauptdatei=LiTerm
|
||||||
|
format=eps
|
||||||
build="xelatex -file-line-error -interaction=batchmode -synctex=-4 -output-directory=build $hauptdatei"
|
build="xelatex -file-line-error -interaction=batchmode -synctex=-4 -output-directory=build $hauptdatei"
|
||||||
dot -Teps -O bilder/*.dot
|
dot "-T$format" -O bilder/*.dot
|
||||||
for bild in bilder/*.svg
|
for bild in bilder/*.svg
|
||||||
do convert $bild $bild.eps
|
do convert $bild "$bild.$format"
|
||||||
done
|
done
|
||||||
$build
|
$build
|
||||||
biber --output-directory build $hauptdatei
|
biber --output-directory build $hauptdatei
|
||||||
|
|
In neuem Issue referenzieren