This commit is contained in:
nemunaire 2015-10-29 05:45:40 +01:00 committed by Pierre-Olivier Mercier
parent d3281c2d51
commit 6256e0eb0c
10 changed files with 564 additions and 0 deletions

19
tutorial/3/Makefile Normal file
View file

@ -0,0 +1,19 @@
SOURCES = tutorial.md installation.md what.md first.md supervisor.md goodpractices.md compose.md project.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