I have seen some solutions on here to problems regarding removing red boxes from hyperlinks, but I have an issue with red boxes around references. Whenever I use the commands \eqref{} or \footnote{} the number in the PDF has a big red box around it. I have linked the issue to my classicthesis package. I like the formatting of this package, but I don't want to have red boxes around my references. What can I do?
My document preamble is:
\documentclass[hidelinks,a4paper]{report}
\usepackage{mathtools}
\usepackage{setspace}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsfonts}-\usepackage{amsthm}
\usepackage{classicthesis}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\PassOptionsToPackage{draft}{hyperref}before\documentclasswill remove them quite for sure, but it will remove all functionality ofhyperref. For other solutions, use answers in what @egreg linked. – yo' Nov 21 '14 at 18:06See the LaTeX manual or LaTeX Companion for explanation. Type H for immediate help.
...
l.14 \title {Alternate Methods of Calculus with Absolute Value Functions}
– Josh Nov 21 '14 at 18:18\hypersetup{hidelinks}should do. An example of your document preamble should be needed, add it to your question. – egreg Nov 21 '14 at 18:19\hypersetup{colorlinks = true, linkcolor =blue, anchorcolor = red, citecolor = DarkGreen, urlcolor = MediumBlue}will remove the boxes and set the colour of the links to whatever you want. – Nov 21 '14 at 20:04