Thomas Tuerk
3c35cc25c3
cleaned-up the sources of the ITP course - remove internal notes - remove exercise solutions - remove KTH logo - add Creative Commons license
9 lines
233 B
Bash
Executable File
9 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
echo "creating $2.pdf"
|
|
mkdir -p tmp
|
|
pdflatex -interaction=batchmode -output-directory=tmp $1.tex > /dev/null
|
|
pdflatex -interaction=batchmode -output-directory=tmp $1.tex > /dev/null
|
|
mkdir -p pdfs
|
|
mv tmp/$1.pdf pdfs/$2.pdf
|
|
|