I am trying to get internal hyperrefs from citation to the bibliography page. I am using BiBTeX, the harvard package, the hyperref package with optional [hidelinks]. The latter works fine to me on the TOC and sections refs.
I read in hyperref package help that it is designed to work with the harvard package. Yet, there is no further explanation on how to make it work. Here is a MWE:
\documentclass[a4paper,11pt]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fullpage}
\usepackage[frenchb]{babel}
\usepackage{cite}
\usepackage[abbr]{harvard}
\citationstyle{dcu}
\usepackage[hidelinks]{hyperref}
\begin{document}
This is a test \cite{test}
\clearpage
\bibliographystyle{dcu}
\bibliography{test}
\end{document}
with test.bib being :
@article{test,
title = "Testing and tests",
author = "Test {Tester}",
journal = "Journal of tests",
volume = "1",
pages = "1",
year = "2012",
}
I am using an up to date Texmaker editor, running on an up to date TeX Live 2011 distribution, on MS Win7.