-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.typ
36 lines (26 loc) · 941 Bytes
/
main.typ
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
#import "@preview/scholarly-epfl-thesis:0.1.0": template, front-matter, main-matter, back-matter
#show: template.with(author: "Your name")
// #set pagebreak(weak: true)
#set page(numbering: none)
#include "head/cover-page.typ"
#pagebreak()
#pagebreak()
#include "head/dedication.typ"
#show: front-matter
#include "head/acknowledgements.typ"
#include "head/preface.typ"
#include "head/abstracts.typ"
#outline(title: "Contents")
#outline(title: "List of Figures", target: figure.where(kind: image))
#outline(title: "List of Tables", target: figure.where(kind: table))
// #outline(title: "List of Listings", target: figure.where(kind: raw))
#show: main-matter
#include "main/ch1_introduction.typ"
#include "main/ch2_figures_tables.typ"
#include "main/ch3_math.typ"
#include "main/ch4_more_text.typ"
#include "main/ch5_the_others.typ"
#show: back-matter
#include "tail/appendix.typ"
#include "tail/biblio.typ"
// #include "tail/cv/cv"