summaryrefslogtreecommitdiff
path: root/_templates/title.tex
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2024-02-21 09:47:56 +0100
committerJonas Smedegaard <dr@jones.dk>2024-02-21 09:47:56 +0100
commit4bfbbf1bac1fe3765fae3d27c4e0eaa7d66a758e (patch)
tree59b8916e743ed695d8b7b83e5eff8d77e008b6f1 /_templates/title.tex
parenta7ab7d97c292345b6912388941c513beee2d8387 (diff)
move LaTeX templates to subdir _templates/
Diffstat (limited to '_templates/title.tex')
-rw-r--r--_templates/title.tex71
1 files changed, 71 insertions, 0 deletions
diff --git a/_templates/title.tex b/_templates/title.tex
new file mode 100644
index 0000000..8acfd6d
--- /dev/null
+++ b/_templates/title.tex
@@ -0,0 +1,71 @@
+$if(title)$
+\title{$title$$if(thanks)$\thanks{$thanks$}$endif$}
+$endif$
+$if(subtitle)$
+$if(beamer)$
+$else$
+\usepackage{etoolbox}
+\makeatletter
+\providecommand{\subtitle}[1]{% add subtitle to \maketitle
+ \apptocmd{\@title}{\par {\large #1 \par}}{}{}
+}
+\makeatother
+$endif$
+\subtitle{$subtitle$}
+$endif$
+\usepackage{authblk,academicons}
+%\renewcommand*{\Authand}{ og }
+%\renewcommand*{\Authands}{ og }
+\renewcommand*{\Authsep}{\authorcr}
+\renewcommand*{\Authand}{\authorcr}
+\renewcommand*{\Authands}{\newline} %%new line after each author
+\newcommand*{\orcid}[1]{\href{https://orcid.org/#1}{\textcolor[HTML]{A6CE39}{\aiOrcid}}}
+\newcommand*{\rorid}[1]{\href{https://ror.org/#1}{\aiROR}}
+$for(by-author)$
+$if(it.attributes.equal-contributor)$% %% TODO: instead check lack of by-author.roles.supervisor
+\author[$for(it.affiliations)$$it.number$$endfor$$if(it.attributes.equal-contributor)$,∗$endif$$if(it.attributes.corresponding)$,†$endif$]{%
+ $it.name.literal$%
+ $if(it.orcid)$%
+ \,\orcid{$it.orcid$}%
+ $endif$%
+}
+$else$ %% FIXME: instead skip and append after author block
+\author[$for(it.affiliations)$$it.number$$endfor$$if(it.attributes.equal-contributor)$,∗$endif$$if(it.attributes.corresponding)$,†$endif$]{%
+ \newline
+ Vejleder:
+ $it.name.literal$%
+ $if(it.orcid)$%
+ \,\orcid{$it.orcid$}%
+ $endif$%
+}
+$endif$
+$endfor$
+$for(by-affiliation)$
+\affil[$it.number$]{%
+ $it.name$%
+ $if(it.department)$%
+ {,}$it.department$%
+ $endif$%
+ $if(it.ror)$%
+ \,\rorid{$it.ror$}%
+ $endif$%
+}
+$endfor$
+\affil[∗]{Disse forfattere bidrog ligeværdigt til dette arbejde.}
+$for(by-author)$
+$if(it.attributes.corresponding)$% %% TODO: somehow set a flag to ensure printing only once
+\affil[†]{Korresponderende forfatter.}
+$endif$
+$endfor$
+\date{$date$}
+$if(beamer)$
+$if(institute)$
+\institute{$for(institute)$$institute$$sep$ \and $endfor$}
+$endif$
+$if(titlegraphic)$
+\titlegraphic{\includegraphics{$titlegraphic$}}
+$endif$
+$if(logo)$
+\logo{\includegraphics{$logo$}}
+$endif$
+$endif$ \ No newline at end of file