Tuto 2: wip

This commit is contained in:
nemunaire 2015-10-07 03:52:31 +02:00
commit 76495b9045
4 changed files with 477 additions and 0 deletions

19
tutorial/2/Makefile Normal file
View file

@ -0,0 +1,19 @@
SOURCES = tutorial.md installation.md docker.md
TEMPLATE = ../../template.tex
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
-M lang=frenchb \
-M fontsize=12pt \
-M papersize=a4paper \
--template=${TEMPLATE}
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf