diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-06-05 10:04:15 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-06-05 10:04:15 -0700 |
commit | 02120505d69d4f98dd3a670ac8df62af8a553a27 (patch) | |
tree | 246728eca2b4cd3f82e59f66b05d48c718ea8fdf | |
parent | 3bc667281e4d5ceb580d865ef1c9df01bc86e7e4 (diff) | |
download | pandoc-02120505d69d4f98dd3a670ac8df62af8a553a27.tar.gz |
LaTeX: added linkcolor variable
-rw-r--r-- | default.latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.latex b/default.latex index 8d6cd38c3..87d71f567 100644 --- a/default.latex +++ b/default.latex @@ -104,8 +104,8 @@ $endif$ pdfauthor={$author-meta$}, pdftitle={$title-meta$}, colorlinks=true, - urlcolor=blue, - linkcolor=black, + urlcolor=$if(linkcolor)$$linkcolor$$else$blue$endif$, + linkcolor=$if(linkcolor)$$linkcolor$$else$blue$endif$, pdfborder={0 0 0}} % Uncomment next line if you want links as footnotes instead of hotlinks: % \renewcommand{\href}[2]{#2\footnote{\url{#1}}} |