From fe312b0a7a0e63e307162da47dc9f1ca8f47737f Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 16 Aug 2018 20:48:51 -0700 Subject: LaTeX writer/template: be sensitive to `filecolor` variable. `linkcolor` only affects internal links, and `urlcolor` only affects linked URLs. For external links, the option to use is `filecolor`. Closes #4822. --- data/templates/default.latex | 1 + 1 file changed, 1 insertion(+) (limited to 'data') diff --git a/data/templates/default.latex b/data/templates/default.latex index 795b6c868..c2e32e006 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -183,6 +183,7 @@ $endif$ $if(colorlinks)$ colorlinks=true, linkcolor=$if(linkcolor)$$linkcolor$$else$Maroon$endif$, + filecolor=$if(filecolor)$$filecolor$$else$Maroon$endif$, citecolor=$if(citecolor)$$citecolor$$else$Blue$endif$, urlcolor=$if(urlcolor)$$urlcolor$$else$Blue$endif$, $else$ -- cgit v1.2.3