forked from DannySeidel/typst-dhbw-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.typ
54 lines (53 loc) · 1.8 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
53
54
// Template: https://typst.app/universe/package/supercharged-dhbw forked to maximized-thesis
// Reminder: Don't forget to install the neccecary fonts
#import "imports.typ": *
#show raw.where(lang: "bob"): it => bob-draw.render(it)
#let abstract = include "chapters/abstract.typ"
#let appendix = include "chapters/appendix.typ"
#let image-references = (
"assets/images/typst.svg": "https://typst.app/assets/images/typst.svg",
)
// Make links blue
#show link: set text(fill: blue.darken(60%))
// Make enum work
#set enum(full: true)
// Setup Template
#show: maximized-thesis.with(
title: "Thesis Title",
authors: (
(name: "Max Mustermann", student-id: "12345678", course: "Some Course", course-of-studies: "Some CoS", company: (
(name: "Optional Company", post-code: "12345", city: "Some City", country: "Some Country")
)),
),
language: "en",
at-dhbw: false,
type-of-thesis: "Some kind of Thesis",
show-confidentiality-statement: false,
show-declaration-of-authorship: false,
show-table-of-contents: true,
show-acronyms: true,
show-list-of-figures: true,
show-list-of-tables: true,
show-code-snippets: true,
show-appendix: true,
show-abstract: true,
show-header: true,
show-header-images: false,
show-image-references: true,
numbering-alignment: center,
toc-depth: 3,
abstract: abstract,
appendix: appendix,
acronyms: acronyms,
image-references: image-references,
university: "Some University",
university-location: "some Location",
supervisor: "Some Supervisor",
date: datetime.today(),
bibliography: bibliography("assets/bib/Bib.bib", style: "ieee"),
logo-left: image("assets/images/logos/dhbwLogo.svg"),
logo-right: image("assets/images/logos/dhbw.svg"),
logo-size-ratio: "1:1",
)
#include "chapters/intro.typ"
#include "chapters/fundamentals.typ"