BibTeX, biblatex and biberbiblatex: name format in citations

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Buchling
Posts: 16
Joined: Thu Jan 24, 2013 2:14 pm

biblatex: name format in citations

Post by Buchling »

Hey again,
One more thing:

Code: Select all

\begin{filecontents}{men.bib}
@INCOLLECTION{Askin2013,
  author = {Kelly Askin},
  title = {Treatment of Sexual Violence in Armed Conflicts: A Historical Perspective and the Way Forward},
  booktitle = {Sexual Violence as an International Crime: Interdisciplinary Approaches},
  year = {2013},
  editor = {Anne-Marie de Brouwer and Charlotte Ku and Renée Römkens and Larissa van den Herik},
  pages = {19--55},
  address = {Cambridge},
  shorttitle = {2013},
  keywords = {book},
  publisher = {Intersentia}
}
\end{filecontents}

\documentclass[a4paper,12pt,bibtotoc,british]{scrartcl}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc} %Zeichencodierung
\usepackage[style=english]{csquotes} % ermöglicht Befehl \enquote{} für Zitate
\usepackage[T1]{fontenc}
\usepackage{lmodern} % schönere Schrift

\addto\captionsbritish{\renewcommand{\contentsname}{Table of Contents}} %Titel des TOC

\usepackage[backend=biber,citestyle=verbose-ibid,bibstyle=verbose,dashed=false,block=none, alldates=long,pagetracker=true,citetracker=constrict,ibidtracker=constrict]{biblatex}
\nocite{*} %Ausgabe aller Bibliographieeinträge
\bibliography{men}%

\renewcommand*{\finalnamedelim}{\addspace\&\addspace } %mehrere Autoren/Editoren
\renewcommand*{\labelnamepunct}{\addcomma\space }
\DeclareNameAlias{sortname}{last-first}

\begin{document}

something\footcite{Askin2013}

\newpage
\printbibliography

\end{document}
In the bibliography, the names (both author and editor) appear in the correct version ("last, first"). In the first citation, however, I get "first last". Why and how do I change that?

Thanks a lot!
Cheers,
Buchling

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

biblatex: name format in citations

Post by cgnieder »

This depends on the name format that is used for citations which is probably aliased to »default«. Try adding \DeclareNameAlias{default}{last-first} instead of or additional to \DeclareNameAlias{sortname}{last-first}.

Regards
site moderator & package author
Buchling
Posts: 16
Joined: Thu Jan 24, 2013 2:14 pm

Re: biblatex: name format in citations

Post by Buchling »

Works, thanks!
Post Reply