I am currently writing my thesis with LaTeX. Everything is working fine except the order of my bibliography.
To explain my problem I use this example.bib
Code: Select all
@misc{Axelos.2016,
editor = {{AXELOS Ltd.}},
year = {2014},
title = {Introducing ITIL{\circledR}: The world's most widely used service management framework},
url = {https://www.axelos.com/Corporate/media/Files/Brochures/ITIL_Product_Brochure_Conference_Version_v1.pdf},
urldate = {2016-03-21}
}
@book{Beck.2005,
author = {Beck, Kent and Andres, Cynthia},
year = {2005},
title = {Extreme programming explained: Embrace change},
publisher = {Addison-Wesley},
isbn = {0321278658}
}
@book{Dirksen.2013,
author = {Dirksen, Jos},
year = {2013},
title = {SOA governance in action: REST and WS- architectures},
address = {Shelter Island},
publisher = {{Manning Publications Co.}},
isbn = {9781617290275}
}
- Axelos.2016
Beck.2005
Dirksen.2013
- Beck.2005
Dirksen.2013
Axelos.2016
So apparently LaTeX or whoever is building my bibliography (sorry, I am still new to LaTeX) orders the bibliography first with all natural persons (single braced) and second with all double braced editors/authors.
I use following statements:
Code: Select all
\usepackage[backend=bibtex, style=alphabetic]{biblatex}
\bibliography{Literatur/Literatur.bib}
\printbibliography
Can someone help me with this?
Do you need more of my code or is this enough?
Thank you very much for any help!