I get a warning every time I run bibtex on files using revtex4-1. The warning is
Warning--jnrlst (dependency: not reversed) set 1
This even happens with files revtex supplies as examples, but I've cut it down to a (nearly) minimal working example: SimpleTex.tex is
\documentclass[aps,prd,10pt]{revtex4-1}
\begin{document}
Refer to Ref.~\cite{ArticleKey}.
%\bibliographystyle{apsrev4-1}
\bibliography{SimpleBib}
\end{document}
and SimpleBib.bib is
@Article{ArticleKey,
title = {Cited work},
journal = "Awesomeness",
author = {Annie Author},
year = 1999
}
Then, latex SimpleTex followed by bibtex SimpleTex gives me the warning. Interestingly, it appears to be using apsrev4-1.bst. But by explicitly giving the bibliographystyle (uncommenting the line in SimpleTex.tex), the warning goes away.
I realize that this is just a warning and could be ignored, but my automatic compilation scheme (emacs) complains that there's a warning every time, so I'd really like to get rid of it. Is it safe to just use the \bibliographystyle statement? Any idea why that appears to work?