When I bibtex foo.tex the following foo.tex
\documentclass{article}
\usepackage{natbib}
\bibliographystyle{plainnat}
\begin{document}
\cite{citation1}
\bibliography{foo}
\end{document}
with this entry in foo.bib
@unpublished{citation1,
author = {bob},
number = {2},
pages = {8--13},
title = {{test title}},
volume = {12},
year = {1492}
}
Bibtex complains:
Warning--empty note in citation1
Can I avoid this warning (in a way that is not much more difficult than ignoring it)?
@unpublished,noteis one of the mandatory fields, so BibTeX is complaining "by design". – lockstep Jan 05 '12 at 22:26citation1entry: Is this a yet-to-be published article where the journal is already known (because you specify year, volume, number and pages)? If so, use@articleand add a note (here: optional) saying "forthcoming" or " in press". – lockstep Jan 05 '12 at 22:35@conferenceor@inproceedings, add the optionalnotefield, and the warning should vanish. – lockstep Jan 05 '12 at 22:48@genericworks so I posted this workaround as an answer, and then updated my answer with the other types you mention. Thanks for the tip. – David LeBauer Jan 05 '12 at 22:48