I'm trying to create a bibliography. I'd like it so that I can write with the Harvard style:
"..bla bla bla bla bla (Bloggs, 2012). Bla bla bla..."
in the main body of the text, with something like this:
"Bloggs, J., The Journal of Stuff, 2012."
as the actual bibliography. I'd like to have the list of 'references' (i.e. of which the above line is one) in alphabetical order. I'd also prefer (but at this stage of frustration, willing to go without) that the "(Bloggs, 2012)" would take the reader to the bibitem when it is clicked on with the cursor.
Any help would be greatly appreciated! I'm in a real hole at the moment; I've read the (natbib) documentation and various wikis but to no avail.
Addendum (moved from the comment section): Here's an MWE --
\documentclass[11pt]{article}
\usepackage[authoryear]{natbib}
\usepackage[colorlinks=true]{hyperref}
\begin{document}
\section{First Section}
\noindent Something is true (Bloggs, 2012)\citep{bloggs:2012}.
\bibliographystyle{plain}
\begin{thebibliography}{99}
\bibitem{bloggs:2012} Bloggs, J., The Journal of Stuff, 2012
\end{thebibliography}
\end{document}
The problem is that the hyperlink is in a box (numbered as "1") but I actually want the "(Bloggs, 2012)" to be the hyperlink. At the moment, it's kind of double.

plain,plainnat, etc? – Mico Jul 5 '12 at 18:13