Tuto 3
This commit is contained in:
parent
d3281c2d51
commit
6256e0eb0c
10 changed files with 564 additions and 0 deletions
19
tutorial/3/Makefile
Normal file
19
tutorial/3/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue