-
Notifications
You must be signed in to change notification settings - Fork 65
/
.edify.yml
39 lines (36 loc) · 1.01 KB
/
.edify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
targets:
# PDF handouts for students:
- name: handout
format: pdf
command:
pandoc --from=markdown+emoji
--include-in-header=templates/columns.tex
--pdf-engine=xelatex
--output=%o
--to=latex
--toc
--toc-depth=2
--top-level-division=chapter
--number-sections
%i
# PDF beamer slides without notes:
- name: slides
format: pdf
remove-divs: [ notes ]
command:
pandoc --from=markdown+emoji
--include-in-header=templates/columns-beamer.tex
--pdf-engine=xelatex
--output=%o
--to=beamer
--slide-level=3
--variable=classoption:aspectratio=43
%i
input-files:
- courses/css-fundamentals.md
- courses/html-css-introduction.md
- courses/javascript-fundamentals.md
- courses/javascript-intermediate.md
- courses/targeted-topics.md
- courses/typescript-fundamentals.md
output-directory: build