General ⇒ Change author name with natbib, get chronological order
Change author name with natbib, get chronological order
1. The author's name in the bibliography should be displayed not as "firstname lastname" but as "lastname, firstname"
2. Works by the same author should be listed in the bibliography in chronological order, not the order in which they are cited in the text.
Does anybody know whether this is possible without attempting anything fancy (i.e. tampering with the .bst file)?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 1
- Joined: Wed Nov 28, 2007 12:17 am
Re: natbib question
I have the same problem of wanting to change first name and surname in the bibliography.
I would like it to display as:
Surname, M.Y. rather than
M.Y. Surname.
thanks for any input.
Change author name with natbib, get chronological order
Code: Select all
\bibliographystyle{XXXX}
\bibliography{mydatabase}
kluwer, klunum, elsart-harv
The babelbib styles cooperate with the babel package and have versions of the standard styles with different orderings for names-surnames. To use these styles, load the package babelbib. Try, for example,
Code: Select all
\usepackage[english]{babel}
\usepackage{babelbib} % put this line in the preamble
.............
\bibliographystyle{babplain-lf} % put these lines in the body of the document
\bibliography{mydatabase}
You can search for the avalaible .bst files in your system in a directory like
/usr/local/texlive/2007/texmf-dist/bibtex/bst
Good luck