I can't get the \bibentry command to produce a full citation in the body of the text. The reference in the bibliography at the end works perfectly, but in the body of the text there is no output whatsoever. Here is a minimal example that illustrates the problem.
\documentclass{article}
\usepackage{natbib, bibentry}
\bibliographystyle{agsm}
\begin{document}
This is supposed to cite in full. Instead I get nothing! \bibentry{Bloggs1950}
\bibliography{fict}
\end{document}
The contents of the fict.bib are
@article{Bloggs1950,
author = "{Bloggs}, {Joseph K.}",
journal = "International Journal of Dubious Assertions",
pages = "337-629",
title = "{Misusing Scientific Terminology for Fun and Profit}",
volume = "202",
year = "1950"
}
How can I fix this problem? Thanks.

biberorbibtex? – Aug 07 '14 at 07:33\nobibliography*(the documentation of bibentry is at the begin of the style). You can't use biber together with natbib, but you should really consider to switch to biblatex + biber instead of using natbib + bibentry. – Ulrike Fischer Aug 07 '14 at 07:40bibtexwith thebibentrypackage or usingbiblatexand the\fullcitecommand see the bibentry documentation as well - you're at least missing a\nobibliographycommand in your example – greyshade Aug 07 '14 at 14:02agufull04style :( – durbachit Jan 25 '18 at 09:15