在一个包含许多引用的 PDF 中,其中一个引用变成了 ????,没有错误或警告。如何使其正确显示?多次编译运行无济于事。
用另一个条目替换该引文的 bibtex 条目,问题就消失了。条目看起来格式正确,但也许我错过了什么 - 请参阅下面的 tex 和 bib 文件的 MWE。在 bib 文件中,当 bib 文件与 tex 文件一起使用时,注释掉的引文有效,而另一个无效。
tex 文件:
\documentclass{article}
\usepackage{natbib}
\title{titl}
\author{auth}
\date{dat}
\begin{document}
\cite{meier+schipper2012} \cite{mengel+2011}
\bibliographystyle{econometrica}
\bibliography{MWEbib}
\end{document}
围兜文件:
%@techreport{meier+schipper2012,
% title={Bayesian games with unawareness and unawareness perfection},
% author={Martin Meier and Burkhard C. Schipper},
% institution={SSRN},
% number={2055026},
% year={2012}
%}
@article{meier+schipper2012,
title={Bayesian games with unawareness and unawareness perfection},
author={Martin Meier and Burkhard C. Schipper},
journal={Economic Theory},
pages={1--31},
year={2012},
publisher={Springer}
}
@TechReport{mengel+2011,
author={Friederike Mengel and Elias Tsakas and Alexander Vostroknutov},
title={Decision making with imperfect knowledge of the state space},
year={2011},
month={2},
institution={Maastricht University},
address={PO Box 616, Maastricht 6200 MD, the Netherlands}
}