Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

21 lines
690 B
Nix

{ core, thesis, ... }:
let
inherit(core) indentation list string time;
inherit(thesis) formatAuthor formatAuthorTableLine thesisVersion;
in
{
name = "Vanilla";
titlePage
= { authors, date, place, title, ... }:
[
"\\centering"
"{\\Large ${journal.organisation.department}} \\\\"
"{${journal.organisation.group}} \\\\"
"{\\Huge ${title}} \\\\"
"{\\large ${journal.title}} \\\\"
"{${string.concatWith ", " ( list.map formatAuthor authors )}} \\\\"
"{\\scriptsize ${place}, ${time.formatDate date.from "deu"} bis ${time.formatDate date.till "deu"}}"
"\\clearpage"
];
}