fix: allow disabeling statement pages (#126)
Reviewed-on: #126 Co-authored-by: servostar <sven.vogel123@web.de> Co-committed-by: servostar <sven.vogel123@web.de>
This commit is contained in:
parent
60f6ae0ddf
commit
859824a42e
|
@ -42,6 +42,8 @@
|
|||
bibliography: none, /* bibliography("refs.bib") */
|
||||
glossary: none,
|
||||
appendices: none,
|
||||
confidentiality: true,
|
||||
authorship: true,
|
||||
),
|
||||
style: (
|
||||
header: (
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
|
||||
#let new_confidentiality_statement_page(config) = (
|
||||
context {
|
||||
if not config.thesis.confidentiality {
|
||||
return
|
||||
}
|
||||
|
||||
pagebreak(weak: true)
|
||||
|
||||
let thesis = config.thesis
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
|
||||
#let new_declaration_of_authorship(config) = (
|
||||
context {
|
||||
if not config.thesis.authorship {
|
||||
return
|
||||
}
|
||||
|
||||
pagebreak(weak: true)
|
||||
|
||||
let thesis = config.thesis
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
bibliography: bibliography("refs.bib"),
|
||||
glossary: yaml("glossary.yml"),
|
||||
appendices: include "appendix.typ",
|
||||
confidentiality: false,
|
||||
authorship: false
|
||||
),
|
||||
style: (
|
||||
header: (
|
||||
|
|
Loading…
Reference in New Issue