Consider the following MWE
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\usepackage{hyperref}
\begin{document}
\begin{equation}
\label{eq:foo}
1 + 1 = 2
\end{equation}
\textcite{salam}
\ref{eq:foo}
\end{document}
Since apparently there is no answer for this question of mine I was wondering if its is possible to disable hyperlinks for texcite citations. In the MWE this means if it possible to have hyperlinks for the equation but not for the (textcite) citation?
backref=trueoption to biblatex and sethyperref=false, the backrefs are printed but not hyperlinked. I was wondering if it is possible to hyperlink them. – petobens Mar 27 '15 at 17:13