How to reverse the order of Name, Firstname in the bibliography when using a *-dw style ? The xpatch trick does only work with built-in and some other styles, not biblatex-dw ones.
Asked
Active
Viewed 483 times
2
-
Have a look at http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Bibliography_styles Not sure if this is what you are looking for... – Rasmus Bækgaard Nov 21 '13 at 08:29
1 Answers
3
A method that works for the biblatex-dw styles as well as for the standard styles that come with biblatex is to declare
\DeclareNameAlias{sortname}{first-last}
in the preamble. See the section "Bibliography – order of first names and last names" of this answer for details.
\documentclass{article}
\usepackage[style=footnote-dw]{biblatex}
\DeclareNameAlias{sortname}{first-last}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, Adam},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
-
newer versions of
biblatexshould usefamily-giveninstead offirst-lastwould you mind editing your question to that effect? – moewe May 04 '18 at 08:02