引用工作论文

引用工作论文

我正在从 Mendeley 导出.bib文件并将其用于我的参考书目。但是,工作论文只显示作者姓名和论文标题。他们没有显示工作论文系列和论文编号。论文编号甚至没有传输到文件中.bib,尽管它在 Mendeley 的正确位置输入,见附图。

@unpublished{Brandts2017,
address = {Center for Economic Studies {\&} Ifo Institute},
author = {Brandts, Jordi and Riedl, Arno},
file = {:Users/Desktop/Mendeley Papers/SSRN-id2731096.pdf:pdf},
institution = {CESIfo},
keywords = {CESifo Working Paper no. 5694,competition,cooperation,experiments},
series = {CESIfo Working Paper},
title = {{Market Interaction and Efficient Cooperation}},
year = {2017}
}

使用\bibliographystyle{chicago}or\bibliographystyle{apa}然后使用\bibliography{library}then 可以得到

Brandts, J. 和 A. Riedl (2017)。市场互动与有效合作。

但我需要的是:

Brandts, J. 和 A. Riedl (2017)。市场互动与有效合作。CESIfo 工作报告 No. 5694。

在此处输入图片描述

* 更新 *

我更新了 Mendeley 中的条目,见图片。

.bib此给出:

@techreport{Brandts2017,
address = {Munich},
author = {Brandts, Jordi and Riedl, Arno},
file = {:Users/Desktop/Mendeley Papers/SSRN-id2731096.pdf:pdf},
institution = {Center for Economic Studies {\&} Ifo Institute},
keywords = {CESifo Working Paper no. 5694,competition,cooperation,experiments},
series = {CESIfo Working Paper},
title = {{Market Interaction and Efficient Cooperation}},
year = {2017}
}

在 pdf 中仍然提供:

Brandts, J. 和 Riedl, A. (2017)。市场互动与有效合作。技术报告,经济研究中心和 Ifo 研究所,慕尼黑。

我还需要的是“技术报告”消失,并且需要显示论文编号。

在此处输入图片描述

答案1

您应该使用@techreport手头论文的条目类型。在下面的解决方案中,请注意我添加了type字段。如果没有提供此字段,则默认为“技术报告”,而这里显然应该是“工作论文”。您还需要提供一个number字段,用于填写工作论文的编号。

当前标记为“地址”的字段是错误的——那是institution。对于该address字段,您绝对应该使用“慕尼黑”,而不是“经济研究中心\& Ifo 研究所”。(仅仅因为一些信息是由 Mendeley 提供的,并不意味着您可以免于仔细检查每个条目以查找错误和遗漏……)

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@techreport{brandts-riedl:2017,
address = {Munich},
author  = {Brandts, Jordi and Riedl, Arno},
institution = {Center for Economic Studies \& Ifo Institute},
keywords= {CESifo Working Paper no. 5694, competition,cooperation,experiments},
series  = {CESIfo Working Paper},
type    = {Working Paper},
number  = {5694},
title   = {Market Interaction and Efficient Cooperation},
year    = {2017},
xmonth  = jul,
xnote   = {(Initial version: Jan. 2016)},
}
\end{filecontents}

\documentclass{article}
\usepackage[english]{babel}
\usepackage[authoryear,round]{natbib}
\bibliographystyle{chicago}

\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document}

相关内容