我应该如何引用欧盟委员会?

我应该如何引用欧盟委员会?

我在论文中使用 biblatex 进行参考文献管理,我想引用欧盟委员会的这份报告但我不知道该在 bib 条目中放些什么。通常我只是在 Google Scholar 上找到我想引用的内容并导出引文,但这篇文档似乎没有在那里编目。

上述链接文档的参考书目条目(适用于 bibtex 或 biblatex)应如何查找?

答案1

你可以使用你需要的任何输入类型,只要你正确输入作者字段即可

author={{The European Commission}},

biblatex带有附加括号。这对于 /Biber 和 BibTeX相同。

例子:

\documentclass{article}
\usepackage{filecontents} % just for the example

\usepackage{biblatex}
\addbibresource{\jobname.bib}

\begin{filecontents*}{\jobname.bib}
@book{eubook,
  author={{The European Commission}},
  title={A title},
  subtitle={A subtitle (optional)},
  year={2014},
  publisher={The European Commission},
  url={http://www.europa.eu/whatever},
}
\end{filecontents*}

\begin{document}

In this document \cite{eubook}, \citeauthor{eubook}
states something.

\printbibliography

\end{document}

在此处输入图片描述

相关内容