Extract project 1 from tutorial
This commit is contained in:
parent
f7f8251bd1
commit
27e6dc7863
15 changed files with 95 additions and 59 deletions
21
subject/1/Makefile
Normal file
21
subject/1/Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
SOURCES = subject.md project.md rendu.md end.md
|
||||
PANDOCOPTS = --latex-engine=xelatex \
|
||||
--standalone \
|
||||
--normalize \
|
||||
--smart \
|
||||
-M lang=fr-FR \
|
||||
-M fontsize=12pt \
|
||||
-M papersize=a4paper \
|
||||
-M mainfont="Linux Libertine O" \
|
||||
-M monofont="Inconsolata" \
|
||||
-M sansfont="Linux Biolinum O" \
|
||||
--include-in-header=../../tutorial/header.tex
|
||||
|
||||
|
||||
all: subject.pdf
|
||||
|
||||
subject.pdf: ${SOURCES}
|
||||
pandoc ${PANDOCOPTS} -o $@ $+
|
||||
|
||||
clean::
|
||||
rm subject.pdf
|
||||
Loading…
Add table
Add a link
Reference in a new issue