I made a test .tex and .bib file, and the error still happens:
Code: Select all
\documentclass[a4paper,10pt]{book}
\usepackage[authoryear,sort&compress]{natbib}
\bibpunct[:]{(}{)}{;}{a}{}{,}
\usepackage{bibentry}
\renewcommand\bibname{References}
\usepackage{hyperref}
\usepackage{url}
\usepackage[all]{hypcap}
\begin{document}
\mainmatter
Here is some stuff to say, plus a citation \citep[192]{opler32jicarilla}. Hopefully Opler will agree to appear this time.
\backmatter
\bibliographystyle{humannat}
\thispagestyle{empty}
\nobibliography{opler}
% \bibliography{opler}
\end{document}
Code: Select all
@BOOK{opler32jicarilla,
title = {Myths and Tales of the Jicarilla Apache Indians},
publisher = {Dover Publications},
year = {1932 [1994]},
author = {Opler, Morris Edward},
address = {Minneola, New York},
endnotereftype = {Book},
shorttitle = {Myths and Tales of the Jicarilla Apache Indians.}
}
I'm using \nobibliography temporarily by request of my supervisors, who don't want to see my list of references every time I send them a draft.
Any ideas?