BibTeX, biblatex and biberNatbib and apsrev - author list without the word "and"

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
rollotomasi
Posts: 1
Joined: Sun Dec 20, 2009 8:12 pm

Natbib and apsrev - author list without the word "and"

Post by rollotomasi »

Hi could anyone advise me how to create references without the word "and" as the last separator, using Natbib with the apsrev bibliographystyle

I.e.: currently

Code: Select all

\usepackage[square,comma,numbers,sort&compress]{natbib} 
\bibliographystyle{apsrev}
gives the following
A. N. Author1, A. N. Author2, and A. N. Author3, Journal of Something 94, 195 (1994).

What I would like is
A. N. Author1, A. N. Author2, A. N. Author3, Journal of Something 94, 195 (1994).

Many thanks

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

Re: Natbib and apsrev - author list without the word "and"

Post by kaiserkarl13 »

The short answer is, "You can't" (since the "and" is part of the "standard" style apsrev.bst). However, you can create your own BST file that's the same as apsrev.bst except for one or two lines, let's call it "apsrev-noand.bst" so no one gets confused.

Look for a line in apsrev.bst under the format.names function that reads "bbl.and"; either delete this line or (better yet) comment it out. This will get rid of the "and" in author lists.
Post Reply