我正在尝试使用 Cite Them Right 第 10 版 - 哈佛格式引用世界银行的报告“外国直接投资、后向联系和生产力溢出效应”。当我在 overleaf 中使用 \cite 函数时,我得到的是 (Jordaan et al., 2020),而不是 (World Bank, 2020),我需要帮助来解决这个问题。
我正在使用 Zotero 来管理我的参考文献,所以如果可以的话我不想手动更改它。谢谢
这是我在 Latex 中用来格式化参考文献的代码。
% bibliography-related packages
\usepackage[round]{natbib}
\usepackage{har2nat}
\bibliographystyle{agsm}
\usepackage{filecontents}
我的 bib 文件中的代码是
@techreport{jordaan_foreign_2020,
title = {Foreign {Direct} {Investment}, {Backward} {Linkages}, and {Productivity} {Spillovers}},
url = {https://ideas.repec.org/p/wbk/wboper/33761.html},
abstract = {No abstract is available for this item.},
language = {en},
number = {33761},
urldate = {2020-06-15},
institution = {The World Bank},
author = {Jordaan, Jacob and Douw, Wim and Qiang, Christine Zhenwei},
month = may,
year = {2020},
note = {Publication Title: World Bank Other Operational Studies},
keywords = {FDI}
}
答案1
在这种情况下,我认为给出作者姓名而不是公司实体是完全可以的。
如果您坚持在引用中将“世界银行”作为作者,最简单的方法是将其放入作者字段,而不是实际的作者姓名。
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[round]{natbib}
\usepackage{har2nat}
\bibliographystyle{agsm}
\begin{filecontents}{\jobname.bib}
@techreport{jordaan_foreign_2020,
author = {Jordaan, Jacob and Douw, Wim and Qiang, Christine Zhenwei},
title = {Foreign Direct Investment, Backward Linkages, and Productivity Spillovers},
year = {2020},
month = may,
number = {33761},
institution = {The World Bank},
address = {Washington, DC},
url = {https://openknowledge.worldbank.org/handle/10986/33761},
urldate = {2020-06-15},
keywords = {FDI},
}
@techreport{worldbank_2020,
author = {{World Bank}},
title = {Foreign Direct Investment, Backward Linkages, and Productivity Spillovers},
year = {2020},
month = may,
number = {33761},
institution = {The World Bank},
address = {Washington, DC},
url = {https://openknowledge.worldbank.org/handle/10986/33761},
urldate = {2020-06-15},
keywords = {FDI},
}
\end{filecontents}
\begin{document}
\citep{jordaan_foreign_2020,worldbank_2020}
\bibliography{\jobname}
\end{document}