Thanks for reading my posting.
I am using MikTeX and seem to be having two problems with the output of certain citations. The LaTeX code:
Code: Select all
\documentclass[12pt]{article}
\usepackage[sort&compress]{natbib}
\setcitestyle{numbers,square}
\bibliographystyle{plainnat}
\begin{document}
Citation 0: \citet{ref00}
Citation 1: \citet{ref01}
Citation 2: \citet{ref02}
\bibliography{test00}
\end{document}
Code: Select all
@ARTICLE{ref00,
AUTHOR="{Ref00 Author}",
JOURNAL="Ref00 Journal",
PAGES="000--999",
TITLE="{Ref00 Title}",
VOLUME=000,
YEAR=0000,
}
@MISC{ref01,
AUTHOR="{Mike's Chemical Company}",
TITLE="Title 01",
NOTE="An added note",
HOWPUBLISHED="Promotional brochure"
}
@MISC{ref02,
AUTHOR="{Mike's Chemical Company}",
TITLE="Title 02",
NOTE="An added note",
HOWPUBLISHED="Promotional brochure",
}
My two problems are the following:This is BibTeX, Version 0.99d (MiKTeX 2.9)
The top-level auxiliary file: test00.aux
The style file: plainnat.bst
Database file #1: test00.bib
Warning--empty year in ref01
Warning--empty year in ref02
(There were 2 warnings)
1) Why am I being warned that the year is empty? I was under the impression that the year was not a required field in @MISC; and
2) Why am I getting ", ." after the word "Brochure"?
Any answers you could give here would be most appreciated.
Thank you,
Christian