improve bibliography a bit

This commit is contained in:
2025-10-01 22:34:31 +02:00
parent 6bebe41d6e
commit 26d861b72a
4 changed files with 26 additions and 5 deletions

View File

@@ -249,3 +249,15 @@
};
outline(title: get_lang_item(language, "toc"));
}
// BIBLIOGRAPHY
#let bibliogr(language, citations_file) = {
if language == "cs" {
bibliography(citations_file, style: "../tul_citace.csl");
} else if language == "en" {
bibliography(citations_file, style: "iso-690-numeric");
} else {
panic("unknown language for bibliography '" + language + "'");
}
}