-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.typ
42 lines (32 loc) · 840 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
37
38
39
40
41
42
#import "template.typ": *
// Take a look at the file `template.typ` in the file panel
// to customize this template and discover how it works.
#show: project.with(
title: "Técnico Lisboa MSc Thesis Typst Template ",
subtitle: "Optional subtitle",
author: "[Author name]",
degree: "[Degree Name]",
supervisors: (
"Prof. Lorem Ipsum",
"Prof. Lorem Ipsum",
),
committee: (
(
role: "President",
name: "Prof. Lorem Ipsum"
),
(
role: "Chair",
name: "Prof. Lorem Ipsum"
),
),
date: "October 2023",
// Insert your abstract after the colon, wrapped in brackets.
// Example: `abstract: [This is my abstract...]`
abstract: lorem(59),
)
#include "section_1.typ"
#include "section_2.typ"
#bibliography("bibliography.bib")
#show: appendices
#include "appendix_a.typ"