5 Commits

Author SHA1 Message Date
3beac874c1 add dp to documentation 2025-10-07 14:05:05 +02:00
0dc0ed4249 make study branch optional for dp 2025-10-07 14:03:24 +02:00
5d763827e8 chagne document identifier for dp 2025-10-07 14:01:06 +02:00
7b3831f5fb add language entries for dp 2025-10-07 13:59:50 +02:00
89c3be0bf0 add base for dp 2025-10-07 13:56:16 +02:00
4 changed files with 92 additions and 0 deletions

View File

@@ -323,6 +323,7 @@ Zvýrazněné hodnoty jsou základní -- pokud vynecháte parametr, pak bude pou
- `document` (typ dokumentu) - `document` (typ dokumentu)
- *`"other"`* - nespecifikovaný (neformální) typ dokumentu - *`"other"`* - nespecifikovaný (neformální) typ dokumentu
- `bp` - Bakalářská práce - `bp` - Bakalářská práce
- `dp` - Diplomová práce
#line() #line()
- `title` (nadpis dokumentu) - `title` (nadpis dokumentu)
- Ve formátu `(<zkratka_jazyka>: "<nadpis>")`, například `(cs: "Můj nadpis")` - Ve formátu `(<zkratka_jazyka>: "<nadpis>")`, například `(cs: "Můj nadpis")`

View File

@@ -5,6 +5,7 @@
// thesis types // thesis types
#import "bp.typ": bp #import "bp.typ": bp
#import "dp.typ": dp
#import "other.typ": other #import "other.typ": other
#let template_classic( #let template_classic(
@@ -21,6 +22,7 @@
// argument pre-checking // argument pre-checking
let document_types = ( let document_types = (
"bp": bp, "bp": bp,
"dp": dp,
"other": other, "other": other,
) )
assert_in_dict(document_type, document_types, "document type"); assert_in_dict(document_type, document_types, "document type");

68
template/classic/dp.typ Normal file
View File

@@ -0,0 +1,68 @@
#import "../lang.typ": get_lang_item
#import "common.typ": (
mainpage,
default_styling,
assignment,
disclaimer,
abstract,
acknowledgement,
toc,
abbrlist,
imagelist,
tablelist,
bibliogr
)
#import "../attachments.typ": attachment_list
#import "../utils.typ": is_none, assert_dict_has, assert_not_none, assert_type_signature, map_none
#let dp(
// general settings
faculty_id, faculty_color, language, assignment_document, citation_file,
// document info
title, author, author_pronouns, supervisor, consultant, study_programme, study_branch,
year_of_study, abstract_content, acknowledgement_content, keywords,
content
) = {
let force_langs = ("cs", "en");
assert_not_none(title, "title");
assert_dict_has(force_langs, title, "title");
assert_not_none(study_programme, "study programme");
assert_dict_has((language,), study_programme, "study programme");
map_none(study_branch, (v) => assert_dict_has((language,), v, "study branch"));
assert_not_none(abstract_content, "abstract");
assert_dict_has(force_langs, abstract_content, "abstract");
if not is_none(keywords) {
assert_dict_has(force_langs, keywords, "keywords");
}
assert_not_none(acknowledgement_content, "acknowledgement content");
if language == "cs" {
assert_not_none(author_pronouns, "author gender");
}
assert_type_signature(supervisor, "string | none", "supervisor");
assert_type_signature(consultant, "string | none", "consultant");
mainpage(
faculty_id, language, "dp", title, author, supervisor, consultant, study_programme,
study_branch, year_of_study,
);
assignment(language, assignment_document);
default_styling(false, faculty_color, {
disclaimer(language, faculty_id, "dp", author, author_pronouns);
abstract("cs", title, abstract_content, keywords);
abstract("en", title, abstract_content, keywords);
acknowledgement(language, author, acknowledgement_content);
toc(language);
tablelist(language);
imagelist(language);
abbrlist(language);
pagebreak(weak: true);
content;
bibliogr(language, citation_file);
attachment_list(language);
});
}

View File

@@ -9,6 +9,7 @@
"year_of_study": "Ročník", "year_of_study": "Ročník",
"bp": "Bakalářská práce", "bp": "Bakalářská práce",
"dp": "Diplomová práce",
"city": "Liberec", "city": "Liberec",
@@ -31,6 +32,21 @@
"svůj": "svoji", "svůj": "svoji",
"jejímu": "jejímu", "jejímu": "jejímu",
"zveřejněn": "zveřejněna" "zveřejněn": "zveřejněna"
},
"dp": {
"práce:ta": "diplomová práce",
"práce:tu": "diplomovou práci",
"práce:té": "diplomové práce",
"moji": "moji",
"naše": "naše",
"naši": "naši",
"naší": "naší",
"mé": "mé",
"můj": "moje",
"svůj": "svoji",
"jejímu": "jejímu",
"zveřejněn": "zveřejněna"
} }
}, },
@@ -60,6 +76,7 @@
"year_of_study": "Year of study", "year_of_study": "Year of study",
"bp": "Bachelor thesis", "bp": "Bachelor thesis",
"dp": "Diploma thesis",
"city": "Liberec", "city": "Liberec",
@@ -71,6 +88,10 @@
"disclaimer_replace": { "disclaimer_replace": {
"bp": { "bp": {
"thesis": "bachelor thesis" "thesis": "bachelor thesis"
},
"dp": {
"thesis": "diploma thesis"
} }
}, },