此 Overleaf 模板中的参考书目文件应包含哪些类型的条目?

此 Overleaf 模板中的参考书目文件应包含哪些类型的条目?

我正在尝试使用这个模板在 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非学术期刊、杂志和报纸上的文章也可以使用条目类型)。

对于此类报告,最好的选择通常是@techreportbtxdoc说了以下内容@techreport

techreport由学校或其他机构发布的报告,通常在系列内编号。必填字段:,,,,author。可选字段:title,,,,,institutionyeartypenumberaddressmonthnote

的情况下https://www.imf.org/en/Publications/WEO/Issues/2016/12/31/World-Economic-Outlook-April-2009-Crisis-and-Recovery-22575我可能会选择

\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}

国际货币基金组织,《2009 年 4 月世界经济展望:危机与复苏》,《世界经济和金融调查》,2009 年。

你会注意到,我没有包括(根据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.},
}

相关内容