我是新手,所以请多多包涵。我刚刚将我的参考书目从 Endnote 导出到一个.bib
文件中。我将其放在与我的 Tex 文件相同的文件夹中。
条目如下所示:
@article{
author = {Bertrand, M. and Duflo, E. and Mullainathan, S.},
title = {How Much Should We Trust Difference-In-Differences Estimates?},
journal = {Quarterly Journal of Economics},
volume = {119},
pages = {249-275},
year = {2004}
}
在我的 TeX 文件中,我在 \begin{document} 之前插入了以下代码:
\bibliography{endnotelibrary}
\usepackage{natbib}
\bibliographystyle{elsarticle-harv}
但是,我不知道如何使用cite{}
,citep{}
因为我的 .bib 条目似乎没有键。
@article{**SOMETHING MISSING HERE**
author = {Bertrand, M. and Duflo, E. and Mullainathan, S.},
有人知道什么代码会在我的文章中引用 Bertrand 和 Duflo 的这篇论文吗?