In my document, there are several bibliographies with the same references. I use biblatex to print the bibliographies, and hyperref to make clickable citations. As written in the biblatex documentation, the link redirects to the first printed occurrence of the reference over the whole document. However, I would like the links to redirect to the bibliography table at the end of the document. How could I achieve that?
Here is a MWE:
\documentclass{article}
\usepackage[backend=biber,bibstyle=numeric]{biblatex}
\usepackage{hyperref}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{Goossens:1994:LC:561206,
author = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander},
title = {The LaTeX Companion},
year = {1994},
publisher = {Addison-Wesley Longman Publishing Co., Inc.}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\printbibliography[title={Front references}]
\vfill Here is a story with references \cite{Goossens:1994:LC:561206}. \vfill
\printbibliography[title={Back references}]
\end{document}
which output looks like
When I click the hyperlink (1), I am redirected to the "Front references", but I would like to be redirected to the "Back references". I am using PDFLaTeX and Biber from MikTeX 2.9.
