-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.typ
52 lines (43 loc) · 953 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
43
44
45
46
47
48
49
50
51
52
#import "rss-template.typ": conf
// Preamble
#let title = [Your Title]
#let author = [Your name]
#let type = [Literature Review | Dissertation Idea | Thesis Proposal (Paper Type)]
#let email = [your.email\@hpi.de]
#let reviewer = [Reviewer's name]
#let abstract = [#lorem(80)]
#show: doc => conf(
[#title],
[#author],
[#email],
[#type],
[#abstract],
[#reviewer],
doc
)
// Start of document:
= First Heading
#lorem(100)
== Second Heading (Please avoid third heading)
#lorem(100)
This is an example cite: @baiyereDigitalTransformationNew2020.
See @roadmap for more details.
#figure(
table(
columns: 4,
[*Working title*], [*Study Description*], [*Status*], [*Comment*],
[y], [0.3s], [0.4s], [0.8s],
[],[],[],[]
),
caption: [
A Table.
],
)<roadmap>
@figure1 is an example of a figure:
#figure(
image("img/HPI_logo.svg",width: 10%),
caption: [
A Figure.
],
)<figure1>
#bibliography("lit.bib")