我正在尝试将特定参考资料纳入我的 bib。以下是我放入 bibtex 文件中的内容。
@UNPUBLISHED{goyalgagnon2015,
title={Social Structure, Markets and Inequality},
author={Gagnon, Julien and Goyal,Sanjeev},
note={Working Paper Series No: 2105/06},
institution={Cambridge-INET Institute},
year={2015}`
}
以下是出现的参考
“Gagnon, J. 和 S. Goyal(2015):社会结构、市场和不平等,”工作论文系列编号:2105/06。”
如您所见,该机构并未出现。有什么理论吗?
答案1
我认为您使用了错误的条目类型:对于手头的条目@unpublished
,您可能应该使用 ,而不是 。@techreport
另外,您不应使用note
字段,而应使用单独的series
、type
和number
字段。最后,您可能还想提供一个address
字段。
\RequirePackage{filecontents}
\begin{filecontents}{testbib.bib}
@techreport{goyalgagnon2015,
title={Social Structure, Markets and Inequality},
author={Gagnon, Julien and Goyal, Sanjeev},
series={Working Paper Series},
type = {Working Paper},
number = {2105/06},
institution={Cambridge-INET Institute},
address = {Cambridge UK},
year={2015}
}
\end{filecontents}
\documentclass{article}
\usepackage{natbib}
\bibliographystyle{ecta}
\begin{document}
\nocite{*}
\bibliography{testbib}
\end{document}