Work on tuto 3

This commit is contained in:
nemunaire 2016-10-03 12:27:18 +02:00 committed by Pierre-Olivier Mercier
commit f216cc220c
8 changed files with 835 additions and 0 deletions

22
tutorial/3/Makefile Normal file
View file

@ -0,0 +1,22 @@
SOURCES = tutorial.md installation.md pseudofs.md cgroups.md capabilities.md project.md
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
--smart \
-M lang=french \
-M fontsize=12pt \
-M papersize=a4paper \
-M mainfont="Linux Libertine O" \
-M monofont="Inconsolata" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf