Conventions for Bibtex labels

From IridiaWiki
Revision as of 15:19, 3 December 2013 by Mbiro (talk | contribs) (Created page with "The conventions for generating the labels of BibTeX entries are as follows: * For up to four authors the label is obtained by the first three letters of the names of the authors…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The conventions for generating the labels of BibTeX entries are as follows:

  • For up to four authors the label is obtained by the first three letters of the names of the authors (the first is capitalized) the year of publication a colon and some string (acronym of conference or journal for papers and acronym of publisher for books).
 @Article{BonBir2005:ijcc,
  author = {G. Bontempi and M. Birattari},
  title = {From linearization to lazy learning: A survey of
           divide-and-conquer techniques for nonlinear control},
  journal = IJCC,
  year = 2005,
  volume = 3,
  number = 1,
  pages = {56--73},
 }
  • If the authors are more than four, only the first three names are used for generating the label. After the three names the string -etal follows, and then year, colon, and acronym (as in the previous case). This prevents from generating long labels.
 @Article{BiaBirChi-etal2006:jmma,
  author = {L. Bianchi and M. Birattari and M. Chiarandini and
            M. Manfrin and M. Mastrolilli and L. Paquete and
            O. Rossi-Doria and T. Schiavinotto},
  title = {Hybrid metaheuristics for the vehicle routing problem
           with stochastic demands},
  journal = JMMA,
  year = 2006,
  note = IP,
 }
  • There are some particular cases:
The name of one author is shorter than three letters (e.g. Xu). In this case only the available letters are used.
 @Article{JinLeuWonXu2003:tsmcb,
  author = {H.-D. Jin and K.-S. Leung and M.-L. Wong and Z.-B. Xu},
  title = {An efficient self-organizing map designed by genetic
           algorithms for the traveling salesman problem},
  journal = SMCB,
  year = 2003,
  volume = 33,
  number = 6,
  pages = {877--887},
 }
The name of one author is composed (e.g. Di Caro). In this case only the first letter is capitalized:
 @InProceedings{BirDicDor2002:ants,
  author = {M. Birattari and G. {Di Caro} and M. Dorigo},
  title = {Toward the formal foundation of Ant Programming},
  booktitle = ANTS-III,
  pages = {188--201},
  year = 2002,
  editor = {M. Dorigo and G. {Di Caro} and M. Sampels},
  volume = 2463,
  series = LNCS,
  address = BERLIN,
  publisher = SV,
 }
If the name of the author contains an accented letter (e.g. Stützle), the letter without the accent is used instead
 @InProceedings{BirStuPaqVar2002:gecco,
  author = {M. Birattari and T. St\"utzle and L. Paquete and
            K. Varrentrapp},
  title = {A Racing Algorithm for Configuring Metaheuristics},
  booktitle = GECCO,
  pages = {11--18},
  year = 2002,
  editor = {W. B. Langdon and E. Cant\'u-Paz and K. Mathias and
           R. Roy and D. Davis and R. Poli and K. Balakrishnan and
           V. Honavar and G. Rudolph and J. Wegener and L. Bull and
           M. A. Potter and A. C. Schultz and J. F. Miller and
           E. Burke and N. Jonoska},
  address = SANFRANCISCO,
  publisher =   MK,
 }