mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-01-31 00:23:56 +00:00
a0caf07dbe
* feat: Merge changes from pandoc 3.5 LaTeX template * feat: create single file templates (latex and beamer) * feat: use `sed` differently on macOS than on other systems * feat: update copyright year * feat: release compressed archives without version number * docs: explain versions of the template (the different files) * ci: build with pandoc 3.5 * chore: add changelog for version 3.0.0
36 lines
929 B
Plaintext
Executable File
36 lines
929 B
Plaintext
Executable File
\definecolor{default-linkcolor}{HTML}{A50000}
|
|
\definecolor{default-filecolor}{HTML}{A50000}
|
|
\definecolor{default-citecolor}{HTML}{4077C0}
|
|
\definecolor{default-urlcolor}{HTML}{4077C0}
|
|
|
|
\hypersetup{
|
|
$if(title-meta)$
|
|
pdftitle={$title-meta$},
|
|
$endif$
|
|
$if(author-meta)$
|
|
pdfauthor={$author-meta$},
|
|
$endif$
|
|
$if(lang)$
|
|
pdflang={$lang$},
|
|
$endif$
|
|
$if(subject)$
|
|
pdfsubject={$subject$},
|
|
$endif$
|
|
$if(keywords)$
|
|
pdfkeywords={$for(keywords)$$keywords$$sep$, $endfor$},
|
|
$endif$
|
|
$if(colorlinks)$
|
|
colorlinks=true,
|
|
linkcolor={$if(linkcolor)$$linkcolor$$else$default-linkcolor$endif$},
|
|
filecolor={$if(filecolor)$$filecolor$$else$default-filecolor$endif$},
|
|
citecolor={$if(citecolor)$$citecolor$$else$default-citecolor$endif$},
|
|
urlcolor={$if(urlcolor)$$urlcolor$$else$default-urlcolor$endif$},
|
|
$else$
|
|
$if(boxlinks)$
|
|
$else$
|
|
hidelinks,
|
|
$endif$
|
|
$endif$
|
|
breaklinks=true,
|
|
pdfcreator={LaTeX via pandoc with the Eisvogel template}}
|