feat: add custom bilbiography titles #109

Merged
servostar merged 2 commits from feat/rename-bibliography-title into develop 2024-11-25 15:50:34 +00:00
1 changed files with 21 additions and 11 deletions

View File

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