I'm preparing a document with references that should be set out as follows:
http://www.i-cite.bham.ac.uk/harvard_reference_list.shtml http://www.i-cite.bham.ac.uk/harvard_citing.shtml
The code I have so far is:
\documentclass[11pt, a4paper]{article}
\usepackage{natbib}
\begin{document}
As \citet{test2012} says.
\bibliographystyle{plain}
\bibliography{V1.bib}
\end{document}
with a .bib that looks like:
@article{test2012,
author = "Surname, forename",
title = "Title",
year = "2012",
journal = "Journal",
volume = "Volume 1",
number = "4",
pages = "342--351"
}
How might I go about modifying this so it fits the way I need the references laid out?
volumefield: That line should probably readvolume = "1"rather thanvolume = "Volume 1". – Mico Mar 01 '12 at 21:06