tuto3: text done
This commit is contained in:
parent
959aa8a4a8
commit
8007b0d85a
8 changed files with 339 additions and 0 deletions
22
tutorial/nat/Makefile
Normal file
22
tutorial/nat/Makefile
Normal 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
|
||||
Reference in a new issue