我有一个简单的问题,关于如何引用包含多个单词的组织。
例如,我使用这个语法,
@misc{Directive2010,
address = {Brussels},
author = {European Parliament and Council of the European Union},
keywords = {Manual,fix},
mendeley-tags = {Manual,fix},
number = {4},
pages = {1--12},
publisher = {European Parliament},
title = {{Directive 2010/30/EU}},
year = {2010}
}
我在文本中得到的输出是:(欧洲联盟议会和,2010 年)
我希望它显示为:(欧洲议会和欧盟理事会,2010 年)
感谢您的帮助!!
答案1
如果你希望 BibTeX 将某个内容视为单个标记,则需要将其括在括号中 (IE因此{}
,您需要这样写:
@misc{Directive2010,
address = {Brussels},
author = {{European Parliament and Council of the European Union}},
keywords = {Manual,fix},
mendeley-tags = {Manual,fix},
number = {4},
pages = {1--12},
publisher = {European Parliament},
title = {{Directive 2010/30/EU}},
year = {2010}
}
BibTeX 将author
字段中出现的任何“and”视为分隔作者的分隔符,除非您将其括在括号中,就像上面的代码一样。