BibTeX, biblatex and bibernatbib not showing [first author] et. al.

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Mark4483
Posts: 1
Joined: Wed Dec 30, 2009 9:36 pm

natbib not showing [first author] et. al.

Post by Mark4483 »

Hello,

I just tried to change my citation style using natbib. From what I've read, using \citet{key} should show up as First Author et. al. (year) if there are mutilple authors. However, mine is listing all the authors instead. I would rather the et al. be there with more than one author. I've put together a simple example:

bibtex file:

Code: Select all

@book{rosen:2006,
    AUTHOR = {Marcus, Michael B. and Rosen, Jay},
     TITLE = {Markov processes, {G}aussian processes, and local times},
    SERIES = {Cambridge Studies in Advanced Mathematics},
    VOLUME = {100},
 PUBLISHER = {Cambridge University Press},
   ADDRESS = {Cambridge},
      YEAR = {2006},
}
Tex file:

Code: Select all

 
\documentclass{article}
\usepackage{natbib}

\begin{document}

\citet{rosen:2006}

\bibliographystyle{plainnat}
\bibliography{bibfile}

\end{document}
 

This produces "Marcus and Rosen [2006]" instead of "Marcus et al. [2006]".

How do I fix this? Thanks!

Recommended reading 2024:

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

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

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Re: natbib not showing [first author] et. al.

Post by josephwright »

With two authors, you'll get both names. "et al." is used with three or more.
Joseph Wright
Post Reply