I have a Problem with my BibTex Settings. When printing I want first name before surname. Right not it is the other way around.
Also, if I have multiple authors, the first one is displayed surname, first name and every following author is displayed first name surname (without comma).
I think that this is very bad styling because it should be the same for all authors. Here I have some of my configurations for you:
\usepackage[
backend=bibtex,
bibwarn=true,
bibencoding=utf8,
sortlocale=de_DE,
style=authoryear,
backref=true
]{biblatex}
\setlength{\bibitemsep}{\baselineskip}
And my BibTex:
@book{Dean.2004,
title={MapReduce: Simplified Data Processing on Large Clusters},
author={Dean, Jeffrey and Ghemawat, Sanjay},
year={2004},
url={http://research.google.com/archive/mapreduce.html},
publisher={Sixth Symposium on Operating System Design and Implementation}
}
And last how it is displayed right now

\DeclareNameAlias{sortname}{first-last}, see How to reverse name and first name?, for example. But as egreg says, this will certainly make locating a reference harder. Or did you want\DeclareNameAlias{sortname}{last-first}? – moewe Jun 29 '15 at 16:21{{Dean, Jeffrey and Ghemawat, Sanjay}}is really nor a good idea it will essentially makebiblatexthink there is only one author of the work called "Dean, Jeffrey and Ghemawat, Sanjay". Please make the author field read{Dean, Jeffrey and Ghemawat, Sanjay}and add\DeclareNameAlias{sortname}{last-first}to your preamble. – moewe Jul 01 '15 at 17:22