I recently made the switch from natbib to biblatex. I've been using \hypersetup to make active links with natbib––it helps me navigate my document as I am working on it (see below for example).
\citepalias and does not generate hyperlinks when used under \citeauthorbiblatex. biblatex's \citet and \citep works great, but my homemade (i.e. using \citepalias) ibid. doesn't generate hyperlinks (I solved the striked part, see update below).
Is there a better way to get active links with biblatex?

Here is a small example using the LaTeX below in a file called `main.tex’
\begin{filecontents}{\jobname.bib}
@book{veblen1919place,
title={The Place of Science in Modern Civilisation: and other essays},
author={Veblen, Thorstein},
year={1919},
publisher={BW Huebsch}
}
@book{veblen2007theory,
title={The theory of the leisure class},
author={Veblen, Thorstein},
year={2007},
publisher={Oxford University Press},
url = {http://www.test.org}
}
\end{filecontents}
\documentclass{article}
\usepackage[style=authoryear, natbib=true, backend=bibtex]{biblatex}
\usepackage{hyperref}
\hypersetup{
pdfborderstyle={/S/U/W 1} % thanks, https://tex.stackexchange.com/a/26085/22939
}
\addbibresource{\jobname.bib}
\begin{document}
\defcitealias{veblen1919place}{ibid.:~}
\noindent
As \citeauthor*{veblen2007theory} has argued \citep[12--19]{veblen1919place} it is clear that $y$. Second, \citet[12]{veblen1919place} also show $m$ and $x$ \citepalias[37]{veblen1919place}.
\printbibliography
\end{document}
Update 2015-02:06 23:34:18Z
With the help of this answer (and this for title) I’ve solved my issue with \citeauthor.
Here iss the code
\DeclareCiteCommand{\citeauthor}
{\boolfalse{citetracker}%
\boolfalse{pagetracker}%
\usebibmacro{prenote}}
{\ifciteindex
{\indexnames{labelname}}
{}%
\printtext[bibhyperref]{\printnames{labelname}}}
{\multicitedelim}
{\usebibmacro{postnote}}
\DeclareCiteCommand{\citetitle}
{\boolfalse{citetracker}%
\boolfalse{pagetracker}%
\usebibmacro{prenote}}
{\ifciteindex
{\indexfield{indextitle}}
{}%
\printtext[bibhyperref]{\printfield[citetitle]{labeltitle}}}
{\multicitedelim}
{\usebibmacro{postnote}}
Look after update


natbiboption forbiblatexis meant to ease the transition from the former to the latter. If you use the 'native'biblatexinterfaces linking should be fine: is there a reason you are not? – Joseph Wright Feb 06 '15 at 19:57natbib=truemainly because I come straight fromnatbib. I took a look at the defaultbiblatexcite commands and didn’t see any replacement for the\citeauthorand\citepaliascommands. In particular the latter is important for me as I use it to randomly create aliases (a feature I quite appreciate). But maybe there is a smart way around this usingbiblatex? – uT5r Feb 06 '15 at 20:09biblatexhas four\citeauthorcommands, though I'm not sure how it compares tonatbib's. If you are going to use\defcitealiasto print 'ibid.', this is solvable by simply\cite-ing the same work two times in a row:biblatexhas quite a sophisticated 'ibidtracker'. – jon Feb 06 '15 at 23:16