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.
17 lines
386 B
17 lines
386 B
#!/bin/bash
|
|
|
|
for FILE in $(find bilder/ -iname '*.xml') ; do
|
|
if [ ! -f "${FILE%.xml}.pdf" -o "$FILE" -nt "${FILE%.xml}.pdf" ] ; then
|
|
ipetoipe -pdf -runlatex $FILE ${FILE%.xml}.pdf
|
|
fi
|
|
done
|
|
|
|
|
|
for f in "Formelsammlung.tex" "Wahrscheinlichkeitstheorie_und_Statistik.tex" ; do
|
|
if [ ! -f "${f/.tex/.toc}" ] ; then
|
|
# Run it twice to generate TOC
|
|
pdflatex "$f"
|
|
fi
|
|
pdflatex "$f"
|
|
done
|