diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-03 11:20:46 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-03 11:20:46 +0200 |
commit | 4177f8c75622b54ec296b5e683bfcb63b19110f0 (patch) | |
tree | 6e568ad48fde3e19ca2d2e67034cb52aab9e7118 | |
parent | refactor(templates/latex): Split the preamble up into multiple files (diff) | |
download | flake-templates-4177f8c75622b54ec296b5e683bfcb63b19110f0.tar.gz flake-templates-4177f8c75622b54ec296b5e683bfcb63b19110f0.zip |
fix(templates/latex/academia): Adjust to new preamble
-rw-r--r-- | templates/latex/academia/%INIT_APPLICATION_NAME.tex | 7 | ||||
-rw-r--r-- | templates/latex/academia/content/static/title.tex | 4 |
2 files changed, 3 insertions, 8 deletions
diff --git a/templates/latex/academia/%INIT_APPLICATION_NAME.tex b/templates/latex/academia/%INIT_APPLICATION_NAME.tex index b94aaa2..50131ad 100644 --- a/templates/latex/academia/%INIT_APPLICATION_NAME.tex +++ b/templates/latex/academia/%INIT_APPLICATION_NAME.tex @@ -20,12 +20,8 @@ \hypersetup{ pdftitle={\@title}, pdfsubject={}, - pdfauthor={\@authors}, + pdfauthor={\AuthorList}, pdfkeywords={TODO}, - colorlinks, - linkcolor={black}, - citecolor={black}, - urlcolor={blue!80!black} } \makeatother @@ -43,4 +39,5 @@ \clearpage{} \printbibliography\relax +\printindex \end{document} diff --git a/templates/latex/academia/content/static/title.tex b/templates/latex/academia/content/static/title.tex index 7398508..16537c9 100644 --- a/templates/latex/academia/content/static/title.tex +++ b/templates/latex/academia/content/static/title.tex @@ -4,12 +4,10 @@ \tableofcontents \vspace*{\fill} -\makeatletter % TODO: Translate this section (or remove this comment, if your language of choice is English) -Copyright \textcopyright{} \@authors{} \@years{}\\ +Copyright \textcopyright{} \AuthorList{} \YearList{}\\ \ \\ This work is licensed under the terms of the %INIT_SPDX_LICENSE_IDENTIFIER licence. The licence text can be found online at \url{%INIT_LICENSE_URL}. \ -\makeatother \clearpage |