Merge pull request 'feat: add custom bilbiography titles' (#109) from feat/rename-bibliography-title into develop
Build'n check / run-ci-linux (push) Has been skipped Details

Reviewed-on: #109
This commit is contained in:
Sven Vogel 2024-11-25 15:50:34 +00:00
commit f48a60380a
1 changed files with 21 additions and 11 deletions

View File

@ -122,17 +122,27 @@
#metadata("content terminate") <end-of-content>
#end_styled(config)[
// add bibliography if set
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
pagebreak(weak: true)
counter(page).update(1)
set bibliography(style: "ieee")
config.thesis.bibliography
}
#end_styled(
config,
context [
// add bibliography if set
#if "bibliography" in config.thesis and config.thesis.bibliography != none {
pagebreak(weak: true)
counter(page).update(1)
set bibliography(
style: "ieee",
title: if (text.lang == "de") {
"Literaturverzeichnis"
} else if text.lang == "en" {
"Bibliography"
},
)
config.thesis.bibliography
}
// appendix
#show-appendix(config: config)
]
// appendix
#show-appendix(config: config)
],
)
]
]