BibLaTeX 字母样式排序很奇怪

BibLaTeX 字母样式排序很奇怪

我的书目排序顺序有问题。

我的设置:

\usepackage[backend=bibtex,style=alphabetic]{biblatex}
\addbibresource{Literatur.bib}

根据 BibLaTeX 文档,默认排序顺序应为anyt。这工作正常,但是当我将组织作为作者(带有空格)时,如下面的 BibTex 条目中所示,排序非常奇怪。

@report{CiscoSystems.2015,
 author = {{Cisco Systems}},
 date = {2015},
 title = {Cisco Global Cloud Index: Forecast and Methodology 2014-2019},
 url = {http://www.cisco.com/c/en/us/solutions/collateral/service-provider/global-cloud-index-gci/Cloud_Index_White_Paper.pdf},
 urldate = {2016-03-14},
 institution = {{Cisco Systems}},
 year = {2015},
 type = {White Paper}
}

sorting=none如您在所附屏幕截图中看到的,alphalabel 生成正确,但排序不正确。使用 eg或使用editor代替手动更改排序顺序author不会改变任何内容。如果我从排序中删除空格,则Cisco Systems正确。

参考书目

似乎包含空格的作者排序不正确,尽管排序顺序应该按字母标签进行(这也是正确的,而且更奇怪)。我使用了双花括号,如包文档中所述。这是正确的吗?还是我遗漏了什么?

提前致谢!

编辑:

这是我的 MWE

\documentclass[a4paper,12pt,twoside,BCOR=10mm]{scrbook}

\usepackage[backend=bibtex,style=alphabetic]{biblatex}
\addbibresource{sources.bib}

\begin{document}

\chapter{Test Chapter}
\cite{Marian.2012}
\cite{CiscoSystems.2015}

\printbibliography

\end{document}

这是我正在使用的 BibTex 文件:

@article{Marian.2012,
 author = {Marian, Matei},
 year = {2012},
 title = {iPaaS: Different Ways of Thinking},
 pages = {1093--1098},
 volume = {3},
 issn = {22125671},
 journal = {Procedia Economics and Finance},
 doi = {10.1016/S2212-5671(12)00279-1}
}

@report{CiscoSystems.2015,
 author = {{Cisco Systems}},
 date = {2015},
 title = {Cisco Global Cloud Index: Forecast and Methodology 2014-2019},
 url = {http://www.cisco.com/c/en/us/solutions/collateral/service-provider/global-cloud-index-gci/Cloud_Index_White_Paper.pdf},
 urldate = {2016-03-14},
 institution = {{Cisco Systems}},
 year = {2015},
 type = {White Paper}
}

答案1

在排序时,(正确放置的)括号会使 BibTeX 偏离,并让其认为名称应该按{C}和 而不是排序C

如果没有充分的理由不使用 Biber,我建议您放弃 BibTeX 并改用 Biber。Biber 在排序时会忽略括号,并正确地对 下的条目进行排序C


或者,使用 BibTeX,您可以label手动指定而不使用括号

@report{CiscoSystems.2015,
 author = {{Cisco Systems}},
 label  = {Cis},
 date = {2015},
 title = {Cisco Global Cloud Index: Forecast and Methodology 2014-2019},
 url = {http://www.cisco.com/c/en/us/solutions/collateral/service-provider/global-cloud-index-gci/Cloud_Index_White_Paper.pdf},
 urldate = {2016-03-14},
 type = {White Paper}
}

相关内容