This commit is contained in:
2023-04-22 17:26:54 +02:00
parent 056fcfacd1
commit 77dfebde7d
23 changed files with 1366 additions and 5 deletions
+29
View File
@@ -5,6 +5,11 @@
content
}
#show cite: content => {
set text(fill: blue)
content
}
// Code formatting
#show raw.where(block: true): it => {
set par(justify: false)
@@ -95,6 +100,7 @@
// Content of the thesis
#pagebreak()
#set text(size: 11pt)
#set heading(numbering: "1.1")
#include "introduction/main.typ"
@@ -107,3 +113,26 @@
#pagebreak()
#include "foreword/main.typ"
#pagebreak()
#include "related-work/main.typ"
// Bibliography
#pagebreak()
#bibliography("bib.bib", style: "chicago-author-date")
#pagebreak()
// Abstracts
#set text(size: 11pt)
#heading(level: 4, numbering: none)[Abstract]
#set text(size: 8pt)
#include "abstracts/en.typ"
#set text(size: 11pt)
#heading(level: 4, numbering: none)[Résumé]
#set text(size: 8pt)
#include "abstracts/fr.typ"