Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
859824a42e | |
|
60f6ae0ddf |
|
@ -26,6 +26,7 @@
|
||||||
),
|
),
|
||||||
supervisor-signature: false,
|
supervisor-signature: false,
|
||||||
authors: ((), ()),
|
authors: ((), ()),
|
||||||
|
coauthors: (),
|
||||||
// information about thesis
|
// information about thesis
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
|
@ -41,6 +42,8 @@
|
||||||
bibliography: none, /* bibliography("refs.bib") */
|
bibliography: none, /* bibliography("refs.bib") */
|
||||||
glossary: none,
|
glossary: none,
|
||||||
appendices: none,
|
appendices: none,
|
||||||
|
confidentiality: true,
|
||||||
|
authorship: true,
|
||||||
),
|
),
|
||||||
style: (
|
style: (
|
||||||
header: (
|
header: (
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
|
|
||||||
#let new_confidentiality_statement_page(config) = (
|
#let new_confidentiality_statement_page(config) = (
|
||||||
context {
|
context {
|
||||||
|
if not config.thesis.confidentiality {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
let thesis = config.thesis
|
let thesis = config.thesis
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
|
|
||||||
#let new_declaration_of_authorship(config) = (
|
#let new_declaration_of_authorship(config) = (
|
||||||
context {
|
context {
|
||||||
|
if not config.thesis.authorship {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
pagebreak(weak: true)
|
pagebreak(weak: true)
|
||||||
|
|
||||||
let thesis = config.thesis
|
let thesis = config.thesis
|
||||||
|
|
|
@ -138,6 +138,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
#v(1em)
|
||||||
|
|
||||||
|
#align(center)[
|
||||||
|
coauthored in part by
|
||||||
|
#linebreak()
|
||||||
|
#for author in config.coauthors {
|
||||||
|
author
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
#set align(bottom)
|
#set align(bottom)
|
||||||
|
|
||||||
#pad(top: 1.5em)[
|
#pad(top: 1.5em)[
|
||||||
|
|
|
@ -24,6 +24,9 @@
|
||||||
contact: "sven.vogel123@web.de"
|
contact: "sven.vogel123@web.de"
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
coauthors: (
|
||||||
|
"Gorbatschew"
|
||||||
|
),
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
subtitle: "for reports and thesises",
|
subtitle: "for reports and thesises",
|
||||||
|
@ -37,6 +40,8 @@
|
||||||
bibliography: bibliography("refs.bib"),
|
bibliography: bibliography("refs.bib"),
|
||||||
glossary: yaml("glossary.yml"),
|
glossary: yaml("glossary.yml"),
|
||||||
appendices: include "appendix.typ",
|
appendices: include "appendix.typ",
|
||||||
|
confidentiality: false,
|
||||||
|
authorship: false
|
||||||
),
|
),
|
||||||
style: (
|
style: (
|
||||||
header: (
|
header: (
|
||||||
|
|
Loading…
Reference in New Issue