Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Remove ugly borders around clickable cross-references and hyperlinks

I know that I can use hyperref to make cross-references and hyperlinks clickable. That makes the clickable areas outlined in fluorescent green, however. How can I make the green boxes go away?
by

2 Answers

sandhya6gczb
With \usepackage[hidelinks]{hyperref} you get active links in \textcolor (usually black) without a box around them.
pankajshivnani123
I use something like

\usepackage{xcolor}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}

This gets rid of the ugly color boxes, but uses dark colored fonts which still make it clear that they are clickable.

Login / Signup to Answer the Question.