Added slides and gitignore

This commit is contained in:
Thomas FORGIONE
2015-08-26 09:11:58 +02:00
parent 771ddb64d5
commit dcef257b76
25 changed files with 238 additions and 0 deletions

17
slides/Makefile Normal file
View File

@@ -0,0 +1,17 @@
TEXC = latexmk -lualatex -output-directory=build
.PHONY: FORCE
pdf: build/main.pdf
build/%.pdf: %.tex FORCE
$(TEXC) -latexoption=-shell-escape $<
cp build/main.pdf build/main.tmp.pdf
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=build/main.pdf build/main.tmp.pdf
rm build/main.tmp.pdf
clean: FORCE
$(TEXC) -c
clean_all: FORCE
$(RM) -fr build