如何在 Latex 或 Overleaf 中引用联合国难民署的文章?

如何在 Latex 或 Overleaf 中引用联合国难民署的文章?

我试图引用联合国难民署的一篇文章。

我希望它以如下的文本形式出现

联合国高级专员(联合国难民事务高级专员公署[UNHCR],2017b)。

我尝试从谷歌复制 bibtex,如下所示

@article{united2017global,
  title={Global trends: Forced displacement in 2017},
  author={United Nations High Commissioner for Refugees},
  year={2017}
}

但结果是

联合国难民事务高级专员公署(2017 年)

即使是参考书目,我也希望它像这样出现(不完全是这样,因为我的文章不同,但可以给你一个想法):

在此处输入图片描述

这篇文章可以在这里找到https://www.unhcr.org/5b27be547.pdf

示例代码如下

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{natbib}
\bibliographystyle{agsm}

\begin{document}
\section{Introduction}

The \cite{united2017global} figure shows that 30 people were forcibly displaced every minute because of conflicts or persecutions across the world in 2017.

\bibliography{Biblio.bib}
\end{document}

单独的Biblio.bib文件如下

@article{united2017global,
  title={Global trends: Forced displacement in 2017},
  author={{United Nations High Commissioner for Refugees}},
  url={https://www.unhcr.org/5b27be547.pdf},
  year={2017}
}

相关内容