diff --git a/presentation/Makefile b/presentation/Makefile new file mode 100644 index 0000000..6edcd91 --- /dev/null +++ b/presentation/Makefile @@ -0,0 +1,24 @@ +latex=xelatex +pdflatex=xelatex +bibtex=bibtex + + +all: main.pdf + +main.pdf: main.tex #main.bib $(cover) $(chapters) + $(latex) main + #$(bibtex) main + $(latex) main + $(pdflatex) main + + + +clean: + -rm main.aux + -rm main.blg + -rm main.dvi + -rm main.log + -rm main.out + -rm main.pdf + -rm main.toc + -rm main.bbl diff --git a/presentation/logo.png b/presentation/logo.png new file mode 100644 index 0000000..0ec386a Binary files /dev/null and b/presentation/logo.png differ