add author to acknowledgement
This commit is contained in:
@@ -56,7 +56,7 @@
|
|||||||
disclaimer(language, faculty_id, "bp", author, author_gender);
|
disclaimer(language, faculty_id, "bp", author, author_gender);
|
||||||
abstract("cs", title, abstract_content, keywords);
|
abstract("cs", title, abstract_content, keywords);
|
||||||
abstract("en", title, abstract_content, keywords);
|
abstract("en", title, abstract_content, keywords);
|
||||||
acknowledgement(language, acknowledgement_content);
|
acknowledgement(language, author, acknowledgement_content);
|
||||||
toc(language);
|
toc(language);
|
||||||
tablelist(language);
|
tablelist(language);
|
||||||
imagelist(language);
|
imagelist(language);
|
||||||
|
@@ -246,12 +246,14 @@
|
|||||||
|
|
||||||
// ACKNOWLEDGEMENT PAGE
|
// ACKNOWLEDGEMENT PAGE
|
||||||
|
|
||||||
#let acknowledgement(language, content) = {
|
#let acknowledgement(language, author, content) = {
|
||||||
if is_none(content) {
|
if is_none(content) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
heading(get_lang_item(language, "acknowledgement"), numbering: none, outlined: false);
|
heading(get_lang_item(language, "acknowledgement"), numbering: none, outlined: false);
|
||||||
par(content.at(language));
|
par(content.at(language));
|
||||||
|
v(2em);
|
||||||
|
align(right, author);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ABSTRACT
|
// ABSTRACT
|
||||||
|
Reference in New Issue
Block a user