implement acknowledgement

This commit is contained in:
2025-10-06 11:07:01 +02:00
parent 527534f885
commit d478d63812
6 changed files with 27 additions and 7 deletions

View File

@@ -45,8 +45,8 @@
style: "classic", faculty: "tul", lang: "cs", document: "other",
// document info
title: none, keywords: none, abstract: none, author: none, author_gender: none,
supervisor: none, consultant: none, programme: none, branch: none,
title: none, keywords: none, abstract: none, acknowledgement: none, author: none,
author_gender: none, supervisor: none, consultant: none, programme: none, branch: none,
// links
assignment: none, citations: "citations.bib",
@@ -66,6 +66,9 @@
assert_type_signature(
abstract, "dictionary[string : string | content] | none", "abstract argument"
);
assert_type_signature(
acknowledgement, "dictionary[string : string] | none", "acknowledgement content"
);
assert_type_signature(author, "string | none", "author argument");
assert_type_signature(author_gender, "string | none", "author gender argument");
assert_type_signature(
@@ -97,7 +100,7 @@
templates.at(style)(
lang, faculty, document, citations, assignment,
title, author, author_gender, supervisor, consultant,
programme, branch, abstract, keywords, content
programme, branch, abstract, acknowledgement, keywords, content
);
import "prototyping.typ": assert_release_ready