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

26 lines
722 B
Nix

{ core, document, helpers, ... }:
{ ... }:
let
inherit(core) indentation list;
inherit(document) Multilingual;
inherit(helpers) formatSection;
in
publications:
formatSection
(
Multilingual
{
deu = "Publikationen";
eng = "Publicationen";
}
)
(
[ "\\vspace{-1em}%" ]
++ (list.map ({ name, ... }: "\\nocite{${name}}%") publications)
++ [
"\\begin{refcontext}[sorting=ydnt]%" indentation.more
"\\printbibliography[heading=none,category=ResumePublications]%"
indentation.less "\\end{refcontext}%"
]
)