-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.typ
67 lines (62 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
#import "lib/htwgThesis.typ": *
#import "lib/utils.typ": todo
// ----- ------------------ ---
// --- your Thesis Metadata ---
#let lang = "de" // "de" or "en"
#let title = "Deine spannende Thesis"
#let degree = "Master" // Bachelor or Master
#let program = "Informatik" // your student program
#let supervisor= "Prof. Dr. Max Mustermann"
#let advisors = ("Erika Mustermann",)
#let author = "John Stiles" // your name
#let studentnumber = "123456"
#let authormail = "[email protected]"
#let location = "Konstanz"
#let startDate = datetime(day: 1, month: 1, year: 1970)
#let submissionDate = datetime(day: 1, month: 1, year: 1970)
#let birthdate = datetime(day: 01, month: 01, year: 1970)
#let birthplace = "Musterort"
#let companySentence = "an der HTWG-Konstanz" // see declarationOfHonour
// ----- ------------------ ---
// ----- template setting -----
#let physicalPrint = true // this adds more empty pages
#let citeStyle = "ieee"
#let show_appendix = true
#let show_glossary = true
#let show_list_of_tables = true
#let show_list_of_figures = true
#let appendicesList = (
("Anhang B: " + lorem(1), include("/appendix/appendix_example1.typ")),
("Anhang B: " + lorem(1), include("/appendix/appendix_example1.typ")),
)
// ----- ------------------ ---
#set document(title: title, author: author)
#show: htwgThesis.with(
lang: lang,
title: title,
degree: degree,
program: program,
supervisor: supervisor,
advisors: advisors,
author: author,
studentnumber: studentnumber,
authormail: authormail,
location: location,
startDate: startDate,
submissionDate: submissionDate,
birthdate: birthdate,
birthplace: birthplace,
companySentence: companySentence,
show_appendix: show_appendix,
show_glossary: show_glossary,
show_list_of_tables: show_list_of_tables,
show_list_of_figures: show_list_of_figures,
appendices: appendicesList,
citeStyle: citeStyle,
physicalPrint: physicalPrint
)
// ----- ------------------ ---
// ----- ------------------ ---
// -- Include your Chapters ---
#include "chapters/examples.typ"
#include "chapters/ipsum.typ"