Code: Select all
@book{Does,
author = "Doe, John and Doe, Jane",
title = "Boring book title",
publisher = "Random House"
}
Code: Select all
\documentclass{article}
\usepackage[english]{babel} %Any language will do
\usepackage[fixlanguage]{babelbib}
\begin{document}
\cite{Does}
\bibliography{aforementioned_file}
\bibliographystyle{babalpha}
\end{document}
[DD] Doe, John and Jane Doe: Boring book title. Random House.
As you will notice, the authors are cited as "Lastname, Firstname" first and "Firstname Lastname" second, which is inconsistent.
Is there any way to make it consistent?