1

How is it possible to change the name sorting for every last author in the bibliography?

In the following WME it should be ... and N. Tesla instead of ... and Tesla, N. I'm using biblatex with biber and pdflatex from texlive 2017

Please see this WME:

\documentclass{article}
\usepackage{filecontents}
\usepackage{etoolbox}
\usepackage[style=authoryear, maxnames = 1, maxbibnames=99,firstinits=true]{biblatex}
\DeclareNameAlias{sortname}{family-given} % Reihenfolge beim Namen

\begin{filecontents}{\jobname.bib}
@article{test,
 author = "Einstein, Albert and Mouse, Mickey and Duck, Donald and Tesla, Nikola ",
 title = "Is reality fun?",
 year = "2201"}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}
Here is some random text with a cite \cite{test}. In the biblopgraphy the last author after the \textbf{and} should be sorted Given-Family, i.e. \textit{N. Tesla}.

\printbibliography
\end{document}  

compiled LaTeX example

Bernard
  • 271,350
TimK
  • 703
  • 1
    Does https://tex.stackexchange.com/q/446731/35864 help? – moewe Sep 04 '18 at 14:30
  • Thank you very much, well I searched a lot, but I did not find that question. Thank you very much. – TimK Sep 04 '18 at 15:11
  • 1
    I only found it because I remembered seeing it a few weeks ago. Would you be OK with closing the question as a duplicate? Your question will remain searchable, so it can help people that think along your lines and search for these keywords. – moewe Sep 04 '18 at 15:16
  • yes of course! (I'm just trying to figure out how to do it.) – TimK Sep 04 '18 at 15:17

0 Answers0