I want to use harvard referencing style. I have the following document:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\bibliographystyle{agsm}
\title{test}
\author{ }
\date{February 2016}
\begin{document}
\maketitle
blab \cite{Jensen2007} has done it
\citeasnoun{Jensen2007} blub bla
\citeasnoun{Jensen2007} blub bla blub.
\section{Introduction}
\bibliography{bibliography}
\end{document}
Latex keeps saying ! Undefined control sequence. l.19 \citeasnoun {Jensen2007} blub bla blub.
But I wrote \citeasnoun correctly and followed the instruction on How do I use the Harvard citation style? (using natbib). Why do I get this error all the time?
citeasnoun. Where is it from? – Johannes_B Feb 22 '16 at 17:27\citeasnouncommand is from theharvardpackage, which is pretty outdated. Thenatbibequivalent is\citet. Thenatbibdocumentation is a little confusing in this respect, since the last section describes a bunch of other packages, all of whichnatbibcan replace, although with slightly different commands. – Alan Munn Feb 22 '16 at 17:28