I recently started using biblatex (my installation is TeX Live 2010). My preamble syntax is:
Code: Select all
\usepackage[backend=bibtex,style=authoryear]{biblatex}
Code: Select all
@book{Abramowitz,
author = "Abramowitz, M. and Stegun, I.",
title = "Handbook of Mathematical Functions",
publisher = {Dover Publications},
year = "1965" }
\parencite{Abramowitz}
in my document, the bibliography entry prints as:Abramowitz, M. and I. Stegun (1965). Handbook of Mathematical Functions. Dover Publications.
Notice that the name format used for the 1st author is inconsistent with that used for the 2nd author. The 1st author is printed using Last Name First format, but the 2nd author is printed using Last Name Last format. What I want is for the entry to print like this:
Abramowitz, M. and Stegun, I. (1965). Handbook of Mathematical Functions. Dover Publications.
How do I get biblatex to do what I want? Is this inconsistency a known biblatex Bug?
Any help would be much appreciated.
Thanks in advance,
Jerry