Solving Bibtex Referencing Problem for Multiple Papers in Same Year

Click For Summary
SUMMARY

The discussion addresses a common issue in BibTeX referencing when citing multiple papers by the same lead author published in the same year. Users encounter the default behavior where BibTeX assigns suffixes "a" and "b" based on the alphabetical order of the second author, rather than the actual publication date. To resolve this, users can manually specify the year in the BibTeX entry, including a letter suffix in parentheses, such as "YEAR = "{2010a}"", to ensure correct ordering. This method allows for precise control over citation formatting in academic writing.

PREREQUISITES
  • Familiarity with BibTeX citation management
  • Understanding of LaTeX document preparation system
  • Knowledge of academic publishing standards
  • Basic skills in editing BibTeX files
NEXT STEPS
  • Explore advanced BibTeX formatting options for citation management
  • Learn about LaTeX bibliography styles and their configurations
  • Investigate tools for automating BibTeX entry generation
  • Research best practices for managing multiple citations in academic papers
USEFUL FOR

Researchers, academic writers, and students who need to manage citations effectively in LaTeX documents, particularly those dealing with multiple publications by the same author in a single year.

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?
 
Technology 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.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
779
  • · Replies 26 ·
Replies
26
Views
7K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 50 ·
2
Replies
50
Views
12K
  • · Replies 25 ·
Replies
25
Views
6K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K