tuto3: text done

This commit is contained in:
nemunaire 2018-03-30 19:00:54 +02:00 committed by Pierre-Olivier Mercier
commit 8007b0d85a
8 changed files with 339 additions and 0 deletions

22
tutorial/nat/Makefile Normal file
View file

@ -0,0 +1,22 @@
SOURCES = tutorial.md what.md netfilter.md wks.md rendu.md
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
--smart \
-M lang=fr-FR \
-M fontsize=12pt \
-M papersize=a4paper \
-M mainfont="Linux Libertine O" \
-M monofont="FantasqueSansMono-Regular" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf