-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.typ
52 lines (44 loc) · 1.17 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#import "template/template.typ":*
#let abstract = [
This is your abstract
#lorem(100)
This is your abstract
]
#show: nus.with(
title: "Singapore Chilli Crab: A Comprehensive Study",
author: "Eugene H. Krabs",
qualification: "BSc, NUS",
degree: "Master of Cooking",
department: "SCHOOL OF COOKING",
date: datetime.today(),
supervisors: (
"Professor Squidward Tentacles",
"Associate Professor Patrick Star"
),
examiners: (
"SpongeBob SquarePants",
),
signature: "pics/signature.png",
bibliography-file: "bibliography.bib",
acknowledgement: none,
abstract: abstract
)
#show "XXX" : text(red, weight: "black")[WHAT]
= Introduction <introduction>
#include "chapters/introduction.typ"
#pagebreak()
= Literature Review <literature_review>
#include "chapters/literature_review.typ"
#pagebreak()
= Objective <objective>
#include "chapters/objective.typ"
#pagebreak()
= Methodology <methodology>
#include "chapters/methodology.typ"
#pagebreak()
= Conclusion and Future work <conclusion_and_future_work>
#include "chapters/conclusions.typ"
#pagebreak()
= Appendix
#include "chapters/appendix.typ"
#pagebreak()