Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ This template defines some new variables to control the appearance of the result

LaTeX command to change the font size for code blocks. The available values are `\tiny`, `\scriptsize`, `\footnotesize`, `\small`, `\normalsize`, `\large`, `\Large`, `\LARGE`, `\huge` and `\Huge`. This option will change the font size for default code blocks using the verbatim environment and for code blocks generated with listings.

- `colorlinks-use-html-colors` (defaults to `false`)

Use `HTML` colors for `linkcolor`, `filecolor`, `citecolor`, and `urlcolor`.

## Required LaTeX Packages

LaTeX manages addons and additional functionality in so called packages. You
Expand Down
15 changes: 11 additions & 4 deletions eisvogel.tex
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,17 @@
$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$,
$if(colorlinks-use-html-colors)$
linkcolor=$if(linkcolor)$[HTML]$linkcolor$$else$default-linkcolor$endif$,
filecolor=$if(filecolor)$[HTML]$filecolor$$else$default-filecolor$endif$,
citecolor=$if(citecolor)$[HTML]$citecolor$$else$default-citecolor$endif$,
urlcolor=$if(urlcolor)$[HTML]$urlcolor$$else$default-urlcolor$endif$,
$else$
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$,
$endif$
$else$
hidelinks,
$endif$
Expand Down