Master thesis on Rational Homotopy Theory
https://github.com/Jaxan/Rational-Homotopy-Theory
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.
27 lines
867 B
27 lines
867 B
11 years ago
|
|
||
|
.PHONY: thesis fast images
|
||
|
|
||
|
# We don want to pollute the root dir, so we use a build dir
|
||
|
# http://tex.stackexchange.com/questions/12686/how-do-i-run-bibtex-after-using-the-output-directory-flag-with-pdflatex-when-f
|
||
|
thesis:
|
||
|
mkdir -p build
|
||
|
cp references.bib build/
|
||
|
pdflatex -output-directory=build thesis.tex
|
||
|
cd build; bibtex thesis
|
||
|
pdflatex -output-directory=build thesis.tex
|
||
|
pdflatex -output-directory=build thesis.tex
|
||
|
cp build/thesis.pdf ./
|
||
|
|
||
|
fast:
|
||
|
mkdir -p build
|
||
|
pdflatex -output-directory=build thesis.tex
|
||
|
cp build/thesis.pdf ./
|
||
|
|
||
|
images:
|
||
|
mkdir -p build
|
||
|
pdflatex -output-directory=build images.tex
|
||
|
pdflatex -output-directory=build images.tex
|
||
|
scp build/images.pdf moerman@stitch.science.ru.nl:~/wvlt_images.pdf
|
||
|
ssh moerman@stitch.science.ru.nl 'pdf2svg wvlt_images.pdf wvlt_images.svg'
|
||
|
scp moerman@stitch.science.ru.nl:~/wvlt_images.svg ./images.svg
|