diff options
| author | Andrew Dunning <adunning@users.noreply.github.com> | 2015-10-20 14:38:48 -0400 |
|---|---|---|
| committer | Andrew Dunning <adunning@users.noreply.github.com> | 2015-10-20 14:38:48 -0400 |
| commit | a84f822c30fde1802131c1c7d69d6ebae4550f72 (patch) | |
| tree | a4b41cba829c43de8647009c931b858148bb44c8 | |
| parent | 17f380f0897fce257c3d2e55e5258bda917caa67 (diff) | |
| download | pandoc-a84f822c30fde1802131c1c7d69d6ebae4550f72.tar.gz | |
Change default LaTeX link colour to black.
This reflects the default behaviour of `hyperref` when `colorlinks` is not enabled (but instead sets the colour to black when it is not specified by the user, for the sake of simplicity).
| -rw-r--r-- | default.latex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.latex b/default.latex index b001ccf00..5ea656054 100644 --- a/default.latex +++ b/default.latex @@ -61,9 +61,9 @@ $endif$ pdfsubject={$subtitle$},$endif$$if(keywords)$ pdfkeywords={$keywords$},$endif$ colorlinks=true, - citecolor=$if(citecolor)$$citecolor$$else$blue$endif$, - urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$, - linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$, + citecolor=$if(citecolor)$$citecolor$$else$black$endif$, + urlcolor=$if(urlcolor)$$urlcolor$$else$black$endif$, + linkcolor=$if(linkcolor)$$linkcolor$$else$black$endif$, pdfborder={0 0 0}$if(hidelinks)$, hidelinks$endif$} \urlstyle{same} % don't use monospace font for urls |
