如何在bibtex中缩短组名,以便仅在文本中显示缩写

时间:2019-06-12 07:59:49

标签: author bibtex

我想引用欧盟委员会在bibtex(乳胶)中的一份报告。在参考文献列表中,我想使用全名,但在正文中,我只想显示缩写。我正在使用elsarticle-harv参考书目样式。

这里是一个例子:

主要文字: 欧盟委员会在2016年同意.....(EC,2016年)。

参考: 欧洲委员会(EC),2016年。......

这是我目前的书房:

@misc {EC2016, title = {{委员会与欧洲议会,理事会,欧洲经济与社会委员会以及各地区委员会的沟通:欧盟的供热与制冷策略}}, 作者= {{EC}}, 年= {2016}}

1 个答案:

答案 0 :(得分:1)

您可以通过natbib软件包定义引用别名。

\documentclass{article}
\usepackage{natbib}
\defcitealias{EC2016}{(EC, 2016)}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@misc{EC2016, title = {{Communication from the Commission to the European Parliament, the Council, the European Economic and Social Committee and the Committee of the Regions: An EU Strategy on Heating and Cooling}}, author = {{European Commission (EC)}}, year = {2016}}
\end{filecontents}
\bibliographystyle{elsarticle-harv}
\begin{document}
\citetalias{EC2016}
\bibliography{references}
\end{document}