I'm using an @misc bibtex entry to cite a government website in my thesis. The Bibliography compiles fine, but within the text the citation is included twice. for example text text (cite, cite).
Any ideas would be appreciated.
\documentclass{report}
\usepackage{natbib}
bibtex entry:
@misc{kinaSUR,
author = {{Ministry for Primary Industries}},
title = {{Kina sea urchin regions in NZ}},
howpublished = {\url{http://fs.fish.govt.nz/Page.aspx?pk=7\&sc=SUR}},
note = {Online; accessed 29 January 2014}
The double brackets for author ensure it typesets correctly, otherwise it tries to make it a first and last name and comes out a jumbled mess. It might be the problem but its the only way I could get the author to typeset correctly.
Suggestions appreciated. Thanks
\documentclass{report}
\usepackage{natbib}
\begin{document}
\bibliographystyle{otago}
\bibliography{thesis}
\citep{kinaSUR}
\end{document}
bibtex entry is above

\documentclass{...}and ending with\end{document}. – Marco Daniel Feb 22 '14 at 07:14\citecommand. – Marco Daniel Feb 22 '14 at 07:25@misc{<key>,definition}– Marco Daniel Feb 22 '14 at 07:54