I have got a problem with the sorting order in my bibliography.
My setup:
\usepackage[backend=bibtex,style=alphabetic]{biblatex}
\addbibresource{Literatur.bib}
According to BibLaTeX documentation default sorting order should be anyt. This is working fine but when I have got an organization as author (with white space) like in the BibTex entry below the sorting is very strange.
@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}
}
As you can see in the attached screenshot the alphalabel is generated properly but the sorting is not correct. Manually changing the sort order by using e.g. sorting=none or using editor instead of author does not change anything. If I remove the white space from Cisco Systems sorting is correct.
It seems like authors containing white spaces are not sorted correctly altough sorting order should be by alphalabel (which is also correct and makes it even stranger). I used double curly brackets as described in the package documentation. Is this correct or am I missing something?
Thanks in advance!
EDIT:
Here is my 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}
And this is the BibTex file I am using:
@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}
}

{Cisco Systems}under{C}and notC. The easiest solution is to switch to Biber. – moewe Mar 15 '16 at 11:07