Solving Bibtex Referencing Problem for Multiple Papers in Same Year

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 10K views
toam
Messages
13
Reaction score
0
I am having a problem with bibtex when I have a second paper by the same author (or at least the same lead author) in a single year.

For example if I have two papers, with the following authors:

Paper 1 - Author 1, Author 2, Author 3, Author 4 (2008)

Paper 2 - Author 1, Author 5, Author 6, Author 7 (2008)


Bibtex will name these "Author 1 et al (2008a)" and "Auther 1 et al (2008b)" where the order of 'a' and 'b' are decided alphabetically by the second author, rather than actual publication date even if the month etc is included in the bobtex reference.



Is there a way to get the papers ordered by publication date?
 
Physics news on Phys.org


You'll want to do something like this:

@ARTICLE{blahblah_2010a,
AUTHOR = {author1,author2},
TITLE = {titletitletitle},
NOTE = {submitted to the Journal of Geophysical Research},
YEAR = "{2010a}"
}
@ARTICLE{blahblah_2010b,
AUTHOR = {author1,author2},
TITLE = {title2title2title2},
NOTE = {submitted to the Journal of Geophysical Research},
YEAR = "{2010b}"
}

note that the year is in parenthesis with the letter you want, a, b, c, etc after it.