Update Makefiles

This commit is contained in:
nemunaire 2014-11-28 17:10:11 +01:00
parent c9bc642ead
commit 628452eca4
3 changed files with 17 additions and 2 deletions

9
slides/Makefile Normal file
View File

@ -0,0 +1,9 @@
all: slides.pdf
.md.pdf:
pandoc --latex-engine=xelatex -t beamer -V theme:Warsaw --toc --normalize --listings --chapters --slide-level=3 -o $@ $<
.md.tex:
pandoc --latex-engine=xelatex -t beamer -V theme:Warsaw --toc --normalize --listings --chapters --slide-level=3 --standalone -o $@ $<
.SUFFIXES: .md .tex .pdf

View File

@ -1,6 +1,9 @@
all: subject.pdf
.md.pdf:
pandoc --latex-engine=xelatex --toc --normalize -o $@ $<
pandoc --latex-engine=xelatex --toc --normalize --chapters -o $@ $<
.md.tex:
pandoc --latex-engine=xelatex --toc --normalize --chapters --standalone -o $@ $<
.SUFFIXES: .md .tex .pdf

View File

@ -1,6 +1,9 @@
all: tutorial.pdf
.md.pdf:
pandoc --latex-engine=xelatex --toc --normalize -o $@ $<
pandoc --latex-engine=xelatex --toc --normalize --listings --chapters -o $@ $<
.md.tex:
pandoc --latex-engine=xelatex --toc --normalize --listings --chapters --standalone -o $@ $<
.SUFFIXES: .md .tex .pdf