|
|
@@ -11,6 +11,38 @@
|
|
|
hidelinks=true
|
|
|
]{hyperref}
|
|
|
|
|
|
+((* if resume.publications *))
|
|
|
+\usepackage[
|
|
|
+ maxbibnames=99
|
|
|
+]{biblatex}
|
|
|
+\usepackage{filecontents}
|
|
|
+\begin{filecontents}{pubs.bib}
|
|
|
+ ((* for publication in resume.publications *))
|
|
|
+ @((( publication.type ))){tmp((( loop.index ))),
|
|
|
+ title = {((( publication.title)))},
|
|
|
+ author = {
|
|
|
+ ((* for author in publication.authors *))
|
|
|
+ ((( author ))) and
|
|
|
+ ((* endfor *))
|
|
|
+ },
|
|
|
+ year = {((( publication.year )))},
|
|
|
+ ((* if publication.month *))
|
|
|
+ month = {((( publication.month )))},
|
|
|
+ ((* endif *))
|
|
|
+ pages = {((( publication.pages )))},
|
|
|
+ ((* if publication.journal *))
|
|
|
+ journal = {((( publication.journal )))},
|
|
|
+ volume = {((( publication.volume )))},
|
|
|
+ number = {((( publication.number )))},
|
|
|
+ ((* endif *))
|
|
|
+ ((* if publication.doi *))
|
|
|
+ doi = {((( publication.doi )))},
|
|
|
+ ((* endif *))
|
|
|
+ }
|
|
|
+ ((* endfor *))
|
|
|
+\end{filecontents}
|
|
|
+\bibliography{pubs}
|
|
|
+((* endif *))
|
|
|
|
|
|
% --- Fonts
|
|
|
|
|
|
@@ -29,6 +61,11 @@
|
|
|
itemsep=0.15em,
|
|
|
}
|
|
|
|
|
|
+((* if resume.publications *))
|
|
|
+\defbibheading{customheading}{\noindent\light\large
|
|
|
+VERÖFFENTLICHUNGEN\vspace{1em}}
|
|
|
+((* endif *))
|
|
|
+
|
|
|
% --- Commands
|
|
|
|
|
|
\newcommand*{\textlight}[1]{{\light #1}}
|
|
|
@@ -154,4 +191,11 @@
|
|
|
((* endif *))
|
|
|
((( resume.basics.location.city ))), \today
|
|
|
\end{flushleft}
|
|
|
+
|
|
|
+ ((* if resume.publications *))
|
|
|
+ \pagebreak
|
|
|
+ \nocite{*}
|
|
|
+ \printbibliography[heading=customheading]
|
|
|
+ ((* endif *))
|
|
|
+ \pagebreak
|
|
|
\end{document}
|