initial commit

This commit is contained in:
2025-09-23 14:52:20 +02:00
commit 5407732395
14 changed files with 326 additions and 0 deletions

11
template/lang.typ Normal file
View File

@@ -0,0 +1,11 @@
#import "utils.typ": assert_in_dict
#let lang_ids = (
cs: 0,
en: 1,
);
#let lang_id(lang_abbr) = {
assert_in_dict(lang_abbr, lang_ids, "language abbreviation");
return lang_ids.at(lang_abbr);
};