我的引用有问题,我想引用一篇有两个作者的文章,A 姓和 B 姓。我在 .bib 文件中这样写:
@article{crillersen,
Author = {Surname, A and Lastname, B},
Title = {Random title},
Year = {2006},
Pages = {1,9 and 14},
Journal ={some journal},
url={http://www.someurl.com/},
}
我得到的结果:
姓氏,A 和 B 姓氏 (2006)。“随机标题”。I:some journal,1、9 和 14。网址:http://www.someurl.com/。
我使用的设置是:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage[backend=biber, style=authoryear]{biblatex}
\usepackage{floatrow}
\usepackage{graphicx}
\usepackage{csquotes}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\printbibliography
\end{document}
为什么第一人称会先显示姓氏,而第二人称会先显示名字?我尝试查看之前提出的问题,但没有找到任何相关信息。
我怎样才能正确打印它?
答案1
似乎有人提到了类似的问题这里。
在序言中添加以下内容:
\DeclareNameAlias{sortname}{family-given}
以前,我建议使用last-first
而不是family-given
,它是等效的,但现在已被弃用,如下面的评论所指出的那样。