I was using hyperref
package so to link all the references within the LaTeX file, however I wanted to personalize a bit the default colors, so my preamble looks like this
\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{epsfig,graphics}
\usepackage{hyperref}
\usepackage{url}
\hypersetup{colorlinks=true, urlcolor=Cerulean, citecolor=Cerulean}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
Then my question would be whether is possible to change also the default colors of footnoes on one hand and references to section in the other. I couldn't find the command on
ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/doc/options.pdf
Best Answer
You can define a new key
footnotecolor
which allow you such a setting.The code is:
After this definition you can use:
If you work with the package
etoolbox
orxpatch
you can make the code clearer. Here the suggestion usingetooltbox
:Here an example: