-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.typ
51 lines (38 loc) · 924 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
#include "title-page.typ"
#set heading(numbering: "1.1")
#set text(lang: "hr")
#set figure(supplement: [Slika])
#set par(leading: 1em, justify: true)
#show par: set block(spacing: 0.75em)
#set page(
margin: (left: 3cm, right: 2.5cm, y: 2.5cm)
)
#set terms(tight: true)
#outline(
title: "Sadržaj",
depth: 3,
indent: true,
)
#pagebreak()
#set page(numbering: "1")
#counter(page).update(1)
#include "sections/uvod.typ"
#include "sections/architecture.typ"
#include "sections/data-model.typ"
#include "sections/frontend.typ"
#include "sections/config.typ"
#include "sections/conclusion.typ"
#outline(
title: [Slike],
target: figure.where(kind: image)
)
// Hacky way to get bibliography to render stuff that wasn't directly cited
// in the doc.
#[
#set text(size: 0pt)
@zero2prod
]
#pagebreak()
#bibliography(title: "Literatura", "works.yml", style: "chicago-author-date")
#pagebreak()
#include "end-page.typ"