Bachelor thesis about the Dold-Kan correspondence https://github.com/Jaxan/Dold-Kan
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 

32 lines
1011 B

#!/bin/bash
mkdir -p build
cd build
case "$1" in
Presentation) pdflatex "../presentation/presentation.tex" || exit 1
pdflatex "../presentation/presentation.tex" || exit 1
mv presentation.pdf ../
;;
Presentation2) pdflatex "../presentation2/presentation.tex" || exit 1
pdflatex "../presentation2/presentation.tex" || exit 1
mv presentation.pdf ../
;;
Symbols) pdflatex "../presentation2/symbols.tex" || exit 1
pdflatex "../presentation2/symbols.tex" || exit 1
scp symbols.pdf moerman@stitch.science.ru.nl:~/symbols.pdf
ssh moerman@stitch.science.ru.nl 'pdf2svg symbols.pdf symbols.svg'
scp moerman@stitch.science.ru.nl:~/symbols.svg ../
;;
Thesis) pdflatex "../thesis/DoldKan.tex" || exit 1
cp "../thesis/references.bib" ./ || exit 1
bibtex DoldKan || exit 1
pdflatex "../thesis/DoldKan.tex" || exit 1
pdflatex "../thesis/DoldKan.tex" || exit 1
mv DoldKan.pdf ../
;;
*) echo "Please provide on of the following arguments: Presentation, Thesis"
esac
cd ..