参考书目中不能使用关键字“and”

参考书目中不能使用关键字“and”

我正在为正在撰写的一篇文章编写参考书目,但遇到了一个问题:当我尝试在参考文献中包含多位作者时,系统无法识别“and”一词,并会将其添加到第一位作者的姓氏上。例如:

@PREAMBLE{
 "\providecommand{\noopsort}[1]{}" 
 # "\providecommand{\singleletter}[1]{#1}%" 
}


@article{Dress2012,

author = {J. Dressel and A. N. Wilson},

title={Significance of the imaginary part of the weak value },

journal = {Phys. Rev. A},

volume = 85,

pages = {012107},

year = {2012},
}

在文献中,作者在参考文献中显示为

J. Dresseland 和 N Wilson。

编辑:我写信给 Overleaf,他们修复了模板中的错误,因此这种情况不再发生。

答案1

大胆猜测:您在“and”之前看到的空格不是空格,而是 Unicode 不可分割空格 U+00A0。尝试删除该字符并插入真正的空格。

相关内容