I have a question on changing the order of first/last names of authors using biblatex. For example, the .bib file contains one entry as:
@incollection{Liu:2001vx, <br>
author = {Liu, Jane and West, Mike}, <br>
title = {{Combined parameter and state estimation in simulation-based filtering}},<br>
booktitle = {Sequential Monte Carlo methods in practice},<br>
year = {2001},<br>
editor = {Doucet, Arnaud and de Freitas, Nando and Gordon, Neil},<br>
pages = {197--224},<br>
publisher = {Springer}<br>
}
I want the compiled output of author names to be in the form of First von Last, Jr. How to make biblatex to output the author names in the desired order. For example, the West, Mike is in the .bib file, I want the name to be printed as Mike West.
I appreciate for your kind and prompt help.
\DeclareNameAlias{sortname}{first-last}
\bibliographystyle{unsrt} \bibliography{BMS}in my .tex file
– Novice User Sep 20 '12 at 11:39\DeclareNameAlias{sortname}{first-last}
\bibliographystyle{unsrt}
– Novice User Sep 20 '12 at 11:51\bibliography{BMS}
in my .tex file. Then, use pdflatex to compile, and I got an error message "! Undefined control sequence. l.3 \DeclareNameAlias {sortname}{first-last}"
Could yu help me more on making DeclareNameAlias to work with bibliographystyle. Thank you.
\DeclareNameAlias{sortname}{first-last} \bibliographystyle{unsrt} \bibliography{BMS}in my .tex file. Then, use pdflatex to compile, and I got an error message "! Undefined control sequence.l.3 \DeclareNameAlias {sortname}{first-last}"Could yu help me more on making DeclareNameAlias to work with bibliographystyle? Thank you. – Novice User Sep 20 '12 at 14:07first-lastformatting directive was added to biblatex 1.0. If you're using an earlier version, you should upgrade. – Audrey Sep 20 '12 at 18:20