我正在尝试使用这个模板在 Overleaf 中。
但是,当我编译代码时,我得到了除参考部分之外的所有内容......
由于在背面链接中没有提到参考书目类型的条目,因此我尝试使用类似
@article{IMF09,
author = {{International Monetary Fund}},
title = {World Economic Outlook: Crisis and Recovery},
year = {2009},
institution = {International Monetary Fund. Research Dept.}
}
但是它随后要求导入 biblatex 包,然后必须添加/更改一大堆命令......
答案1
首先,模板加载 IEEE 类IEEEtran
,但使用过时的(我认为是非官方的)ieeetr
参考书目样式。IEEEtran
带有自己的一套官方参考书目样式,因此您应该考虑使用\bibliographystyle{IEEEtran}
。(事实上,这对于手头的问题来说并不重要......)
一般情况下,我建议不要使用出版商/期刊类,IEEEtran
除非您计划向该出版商/期刊提交文章。在这种情况下,您应该完全按照文档中所述使用该类。
此类灰色文献通常不使用@article
条目类型。只有在学术期刊上发表的论文才应使用条目类型@article
(@article
非学术期刊、杂志和报纸上的文章也可以使用条目类型)。
对于此类报告,最好的选择通常是@techreport
。btxdoc
说了以下内容@techreport
techreport
由学校或其他机构发布的报告,通常在系列内编号。必填字段:,,,,author
。可选字段:title
,,,,,institution
year
type
number
address
month
note
\documentclass{IEEEtran}
\begin{filecontents}{\jobname.bib}
@techreport{imf09,
author = {{International Monetary Fund}},
title = {World Economic Outlook, {April} 2009: Crisis and Recovery},
year = {2009},
type = {World Economic and Financial Surveys},
}
\end{filecontents}
\begin{document}
\cite{imf09}
\bibliographystyle{IEEEtran}
\bibliography{\jobname}
\end{document}
你会注意到,我没有包括(根据btxdoc
)必填字段institution
,因为这会导致“国际货币基金组织”重复,我觉得这很尴尬
@techreport{imf09,
author = {{International Monetary Fund}},
title = {World Economic Outlook, {April} 2009: Crisis and Recovery},
year = {2009},
type = {World Economic and Financial Surveys},
institution = {International Monetary Fund},
address = {Washington, D.C.},
}