diff options
author | John MacFarlane <jgm@berkeley.edu> | 2012-06-08 10:56:57 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2012-06-08 10:56:57 -0700 |
commit | 4b27abf40461c7421c3a14cd5547a9018eb1acca (patch) | |
tree | 1df191da9da8adc478e423d7b6bf8a8f9b6eabaa /default.latex | |
parent | ba5f9741a1f96e521bdfbac3795524b83645e8fb (diff) | |
download | pandoc-4b27abf40461c7421c3a14cd5547a9018eb1acca.tar.gz |
LaTeX template: Separate `urlcolor` and `linkcolor` variables.
Diffstat (limited to 'default.latex')
-rw-r--r-- | default.latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.latex b/default.latex index a27f17068..e92ced331 100644 --- a/default.latex +++ b/default.latex @@ -93,8 +93,8 @@ $endif$ pdfauthor={$author-meta$}, pdftitle={$title-meta$}, colorlinks=true, - urlcolor=$if(linkcolor)$$linkcolor$$else$blue$endif$, - linkcolor=$if(linkcolor)$$linkcolor$$else$blue$endif$, + urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$, + linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$, pdfborder={0 0 0}} $if(links-as-notes)$ % Make links footnotes instead of hotlinks: |