I have the following in .bib file:
@online{solarfarm,
author = {Buckley, Alastair and nee Hall, Lisa Clark and {Colantuono, Giuseppe Everard}, Aldous},
file = {:Users/Desktop/Downloaded/85c4687c.html:html},
title = {{The Sheffield Solar Farm}},
Howpublished = {\url{http://www.sheffieldsolarfarm.group.shef.ac.uk/solar-panel-data}},
url = {\url{http://www.sheffieldsolarfarm.group.shef.ac.uk/solar-panel-data}},
urldate = {16/5/2013}
}
but I can't get the date retrieved or date accessed to work, it never shows up in references.
MWE:
\documentclass[12pt,a4paper]{report}
\begin{document}
\renewcommand\bibname{References}
\bibliographystyle{abbrv}
\bibliography{library}
\end{document}


abbrvstyle doesn't know those fields. – egreg Apr 30 '13 at 20:24notefield is useful for date accessed. e.g. in harvard system simply enter [Date accessed: 2013]. – oLas Apr 30 '13 at 20:40\bibliographystyle{agsm}which DOES have a note field. Then, simply add a note to each referencenote = {[Date accessed: 2013]}to comply with Harvard standards. – oLas Apr 30 '13 at 21:30