BibTeX, biblatex and biberReference list and two word surnames

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
WalidSaladin
Posts: 17
Joined: Mon Aug 27, 2012 8:58 pm

Reference list and two word surnames

Post by WalidSaladin »

How do you make BiBTeX take the "le" in "le Roux" and "de" in "de Villiers" into account?

BiBTeX transforms the following citation (Example 1):

Le Roux, J. D. and Glasser, E. (2008) 'Working with the imagination' The Imaginary Journal 53, 1680-1693.

into (Example 2):

Roux, J. D. L. and Glasser, E. . . .

So, how do you have BiBTeX represent the citation as Example 1 instead of Example 2?

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Reference list and two word surnames

Post by kaiserkarl13 »

BibTeX doesn't actually read, so it needs some help to know what constitutes "one" name:

Code: Select all

@article{LeRoux2008,
   author  = "{Le Roux}, J. D. and Glasser, E.",
   year    = 2008,
   title   = "Working with the Imagination",
   journal = "The Imaginary Journal",
   volume  =  53,
   pages   = "1680--1693"
}
Note the use of the en dash in the date (the "standard" styles should figure that out, but the non-standard ones generally will not) and the use of braces around the compound name. There are options in some styles to sort on "Le" vs. "Roux" for this name, too.
Post Reply