BibTeX, biblatex and biberauthor's last name first

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
jaisley
Posts: 2
Joined: Thu Aug 06, 2015 2:46 am

author's last name first

Post by jaisley »

Hi, I'm trying to get the citation below to output the authors as Tamura, K and Nei, M but it comes out as K Tamura and M Nei? I'm using plain bibliography style.

Code: Select all

@ARTICLE{tamura,
  author =       {Tamura, K and Nei, M},
  title =        {Estimation of the number of
nucleotide substitutions in the control region of mitochondrial
DNA in humans and chimpanzees},
  journal =      {Mol. Biol. Evol.},
  year =         {1993},
  volume =       {10},
   pages =       "512-526",
}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Re: author's last name first

Post by kaiserkarl13 »

If you want the bibliography to have a different style, use a different bibliographystyle command; the achemso style, for example, has authors' names as Last, F. M.; Last2, F. M. (etc.).

If you want a style that isn't in one of the .bst files you find either installed by default or from various sources on the Web, I recommend running "latex makebst" and providing the information it asks for.
LaTeX
Posts: 11
Joined: Sun Sep 27, 2015 11:04 am

author's last name first

Post by LaTeX »

I have a related question: In my bibliography the first author get's referenced as Surname, Forename and all others as Forename Surname. Is there any reason for that and what is the common standard?

Edit:

Currently I use the packages

Code: Select all

\usepackage[nottoc,numbib]{tocbibind}
\usepackage{babelbib}

%with

\bibliographystyle{babunsrt} .
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

author's last name first

Post by Johannes_B »

Yes, this is common standard.

Using modern package biblatex slight modifications like swapping names is fairly easy.
Annoyinly hard with the old system using bst-files.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
LaTeX
Posts: 11
Joined: Sun Sep 27, 2015 11:04 am

Re: author's last name first

Post by LaTeX »

Thanks!
Post Reply