I want in-text citations with three or more authors to use "et al." after the first author for papers with three or more authors. Ex I want [Brockfeld, Gartner, Sohr & Wagner 2008] to appear as [Brockfeld, et. al 2008] but this is not happening.
Code: Select all
\documentclass{article}
%citation style
\usepackage{harvard}
\renewcommand{\harvardurl}{URL:\url}
%\usepackage{natbib}
%Citation parenthesis option
\harvardparenthesis{square}
\begin{document}
Citing a paper with four authors: ~\cite{Brockfeld_Gartner_Sohr_Wagner_Board_2008} and another: ~\cite{Levine_et_al._2004}. A paper with three authors: ~\cite{Farhi_et_al._2011}. \\
\bibliographystyle{srlstyle}
\bibliography{bibliography}
\end{document}
Does anyone know why my style is not being applied?
Thanks,
Alex