I'm using the natbib package for the bibliography, and initially had the plainnat style but have since been told that I've got to use Harvard referencing only. So I tried changing the bibliography styles to ones I've found on online reference sheets - e.g. agsm.bst, but the only ones I find that work and put the bibliography references in the order they need to be ('Author;Year;Title;Journal;Volume;Pages') will bold the volume number like this:
JR Krebs. 1980. Optimal foraging, predation risk and territory defence. Ardea, 68:83-90
It looks very odd and I would like to remove this but I don't know how - do I need to change the code, or is there a style package that I should be using?
Here's the code I have set up:
\documentclass[12pt]{article}
\usepackage{fontspec}
\setmainfont{Arial}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{listings}
\lstset{frame=single,breaklines=true}
\setcounter{secnumdepth}{4}
\sloppy
\usepackage{geometry}
\geometry{margin=1in}
\title{PAPER TITLE}
\date{}
\begin{document}
TEXT HERE
\bibliographystyle{plainnat}
\bibliography{bibliography.bib}
and the bibliography entries are being entered like this:
@article{krebs1980optimal,
title={Optimal foraging, predation risk and territory defence},
author={Krebs, JR},
journal={Ardea},
volume={68},
pages={83--90},
year={1980},
publisher={BioOne}
}



natbib, but I can say it will be easier withbiblatex(which has a natbib compatibility mode). – Bernard Jan 18 '17 at 17:01\textbfbut if it is for submission it is usually best not to change specified styles – David Carlisle Jan 18 '17 at 17:02natbib(and BibTeX) to usingbiblatexis somewhat incomplete, as far as recommendations go. You ought to provide a suggestion for the citation style as well, I believe. – Mico Jan 19 '17 at 00:47