I have the following .bib file:
@Book{sample-book,
author="First1 Last1 and First2 Last2",
title="A sample book",
publisher="Public Domain Books",
}
Then I use lualatex biber lualatex lualatex to generate the pdf file.
However, the generated entry would look like this:
Last1, First1 and First2 Last2, A sample book, Public Domain Books
My biblatex package settings:
\usepackage[
bibstyle=mla,
style=authortitle,
%style=authortitle-tcomp,
%firstinits=true,
%backref=true,
natbib=true,
backend=biber
]{biblatex}
last-firstshould befamily-given. The older name still works, but generates a warning. Note that thesortnameformat applies only in some styles. – moewe Sep 05 '16 at 18:25