[Tex/LaTex] What should an entry for arXiv entries look like for biblatex

arxivbiblatex

The tool I'm using to manage references (Papers for OS X; Wayback Machine) doesn't seem to be capable of properly exporting arXiv entries for use with biblatex. What is the correct biblatex format for an arXiv entry?

For example, Papers generates items like

@article{Altshuler2002,
    author = {Altshuler, B},
    title = {{Calculation of the observationally small cosmological constant in the model of six-dimensional}},
    journal = {Arxiv preprint hep-th},
    year = {2002},
    url = {http://arxiv.org/pdf/hep-th/0206225}}

@article{Acemoglu2010,
    author = {Acemoglu, Daron and Como, Giacomo and Fagnani, Fabio and Ozdaglar, Asuman},
    title = {{Opinion fluctuations and disagreement in social networks}},
    journal = {arXiv.org},
    year = {2010},
    volume = {cs.SI},
    month = sep,
    rating = {0},
    url = {http://arxiv.org/abs/1009.2653v1}}

which, as near as I can tell, should actually look like

@eprint{Altshuler2002,
    eprinttype={arxiv}, 
    eprint = "hep-th/0206225"
    author = {Altshuler, B},
    title = {{Calculation of the observationally small cosmological constant in the model of six-dimensional}},
    year = {2002},
    url = {http://arxiv.org/abs/hep-th/0206225}}

@eprint{Acemoglu2010,
    eprinttype={arxiv}, 
    eprint = "1009.2653v1",
    primaryClass = "cs.SI",
    archivePrefix = "arXiv",
    author = {Acemoglu, Daron and Como, Giacomo and Fagnani, Fabio and Ozdaglar, Asuman},
    title = {{Opinion fluctuations and disagreement in social networks}},
    year = {2010},
    month = sep,
    url = {http://arxiv.org/abs/1009.2653v1}}

in order to take full advantage of biblatex.

Are these the correct BibLaTeX forms for arXiv entries? I'm having trouble reconciling related answers I find here, the output from online resources for generating BibTeX, and the arXiv spec—not to mention the seemingly arXiv-unaware output (above) that I get from Papers (or, for that matter, JabRef or Zotero).

Best Answer

There is no eprint entry type. arXiv articles can be entered as article or online types. Article identifiers are represented by the eprinttype and eprint fields. Any arXiv subject classification should be entered in eprintclass or its alias primaryclass. The url field is unnecessary as standard styles generate a link to the article from its identifiers.

Here are some (partial) arXiv entries from the documentation.

@Article{baez/article,
  author      = {Baez, John C. and Lauda, Aaron D.},
  title       = {Higher-Dimensional Algebra V: 2-Groups},
  journaltitle= {Theory and Applications of Categories},
  volume      = {12},
  version     = {3},
  date        = {2004},
  pages       = {423--491},
  urldate     = {2006-10-01},
  eprinttype  = {arxiv},
  eprint      = {math/0307200v3}
}
@Online{baez/online,
  hyphenation = {american},
  author      = {Baez, John C. and Lauda, Aaron D.},
  title       = {Higher-Dimensional Algebra V: 2-Groups},
  version     = {3},
  date        = {2004-10-27},
  eprinttype  = {arxiv},
  eprint      = {math/0307200v3}
}
@Online{wassenberg,
  hyphenation = {american},
  author      = {Wassenberg, Jan and Sanders, Peter},
  title       = {Faster Radix Sort via Virtual Memory and Write-Combining},
  version     = {1},
  date        = {2010-08-17},
  eprinttype  = {arxiv},
  eprintclass = {cs.DS},
  eprint      = {1008.2849v1}
}

Annotations and additional examples can be found in the biblatex-examples.bib file. Further details can be found in section 3.10.7 of the biblatex manual.