BibTeX

BibTeX

BibTeX is a tool for formatting lists of references. The BibTeX tool is typically used together with the LaTeX document preparation system. Within the typesetting system, its name is styled as {mathrm{B{scriptstyle{IB ! T!_{displaystyle E} ! X.

BibTeX was created by Oren Patashnik and Leslie Lamport in 1985. BibTeX makes it easy to cite sources in a consistent manner, by separating bibliographic information from the presentation of this information. This same principle of separation of content and presentation/style is used by LaTeX itself.

Bibliographic information file

BibTeX uses a style-independent text-based file format for lists of bibliography items, such as articles, books, theses. BibTeX bibliography files usually end in .bib.

Bibliography entries each contain some subset of standard data entries:

* address: Publisher's address (usually just the city, but can be the full address for lesser-known publishers)
* annote: An annotation for annotated bibliography styles (not typical)
* author: The name(s) of the author(s) (in the case of more than one author, separated by and)
* booktitle: The title of the book, if only part of it is being cited
* chapter: The chapter number
* crossref: The key of the cross-referenced entry
* edition: The edition of a book, long form (such as "first" or "second")
* editor: The name(s) of the editor(s)
* eprint: A specification of an electronic publication, often a preprint or a technical report
* howpublished: How it was published, if the publishing method is nonstandard
* institution: The institution that was involved in the publishing, but not necessarily the publisher
* journal: The journal or magazine the work was published in
* key: A hidden field used for specifying or overriding the alphabetical order of entries (when the "author" and "editor" fields are missing). Note that this is very different from the key (mentioned just after this list) that is used to cite or cross-reference the entry.
* month: The month of publication (or, if unpublished, the month of creation)
* note: Miscellaneous extra information
* number: The "number" of a journal, magazine, or tech-report, if applicable. (Most publications have a "volume", but no "number" field.)
* organization: The conference sponsor
* pages: Page numbers, separated either by commas or double-hyphens. For books, the total number of pages.
* publisher: The publisher's name
* school: The school where the thesis was written
* series: The series of books the book was published in (e.g. "The Hardy Boys" or "Lecture Notes in Computer Science")
* title: The title of the work
* type: The type of tech-report, for example, "Research Note"
* url: The WWW address
* volume: The volume of a journal or multi-volume book
* year: The year of publication (or, if unpublished, the year of creation)

In addition, each entry contains a key that is used to cite or cross-reference the entry. This key is the first item in a BibTeX entry, and is not part of any field.

Entry Types

Bibliography entries included in a .bib are split by types. The following types are understood by virtually all BibTeX styles:; article: An article from a journal or magazine.
Required fields: author, title, journal, year
Optional fields: volume, number, pages, month, note, key; book: A book with an explicit publisher.
Required fields: author/editor, title, publisher, year
Optional fields: volume, series, address, edition, month, note, key, pages; booklet: A work that is printed and bound, but without a named publisher or sponsoring institution.
Required fields: title
Optional fields: author, howpublished, address, month, year, note, key; conference: The same as inproceedings, included for Scribe compatibility.
Required fields: author, title, booktitle, year
Optional fields: editor, pages, organization, publisher, address, month, note, key; inbook: A part of a book, usually untitled. May be a chapter (or section or whatever) and/or a range of pages.
Required fields: author/editor, title, chapter/pages, publisher, year
Optional fields: volume, series, address, edition, month, note, key; incollection: A part of a book having its own title.
Required fields: author, title, booktitle, year
Optional fields: editor, pages, organization, publisher, address, month, note, key; inproceedings: An article in a conference proceedings.
Required fields: author, title, booktitle, year
Optional fields: editor, pages, organization, publisher, address, month, note, key; manual: Technical documentation.
Required fields: title
Optional fields: author, organization, address, edition, month, year, note, key; mastersthesis: A Master's thesis.
Required fields: author, title, school, year
Optional fields: address, month, note, key; misc: For use when nothing else fits.
Required fields: none
Optional fields: author, title, howpublished, month, year, note, key; phdthesis: A Ph.D. thesis.
Required fields: author, title, school, year
Optional fields: address, month, note, key; proceedings: The proceedings of a conference.
Required fields: title, year
Optional fields: editor, publisher, organization, address, month, note, key; techreport: A report published by a school or other institution, usually numbered within a series.
Required fields: author, title, institution, year
Optional fields: type, number, address, month, note, key; unpublished: A document having an author and title, but not formally published.
Required fields: author, title, note
Optional fields: month, year, key

Style files

BibTeX formats bibliographic items according to a style file, typically by generating TeX or LaTeX formatting commands. However, style files for generating HTML output also exist. BibTeX style files, for which the suffix .bst is common, are written in a simple, stack-based programming language that describes how bibliography items should be formatted. There are some packages which can generate .bst files automatically (like custom-bib or Bib-it).

Most journals or publishers that support LaTeX often have a customized bibliographic style file for the convenience of the authors. This ensures that the bibliographic style meets the guidelines of the publisher with minimal effort.

Examples

A .bib file might contain the following entry, which describes a mathematical handbook:

@Book{abramowitz+stegun, author = "Milton Abramowitz and Irene A. Stegun", title = "Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables", publisher = "Dover", year = 1964, address = "New York", edition = "ninth Dover printing, tenth GPO printing" }

If a document references this handbook, the bibliographic information may be formatted in different ways depending on which citation style (APA, MLA, Chicago etc.) is employed. The way LaTeX deals with this is by specifying cite commands and the desired bibliography style in the LaTeX document. If the command cite{abramowitz+stegun} appears inside a LaTeX document, the bibtex program will include this book in the list of references for the document and generate appropriate LaTeX formatting code. When viewing the formatted LaTeX document, the result might look like this:

: Abramowitz, Milton and Irene A. Stegun (1964), "Handbook of mathematical functions with formulas, graphs, and mathematical tables." New York: Dover.

Depending on the style file, BibTeX may rearrange authors' last names, change the case of titles, omit fields present in the .bib file, format text in italics, add punctuation, etc. Since the same style file is used for an entire list of references, these are all formatted consistently with minimal effort required from authors or editors.

Author formatting

Last name prefixes such as von, van and der are handled automatically, provided they are in lower case to distinguish them from middle names. Multiple word last names are distinguished from first and middle names by placing the last names first, then a comma, then the first and middle names. Name suffixes such as Jr., Sr., and III are generally handled by using two comma separators as in the following example:

@Book{hicks2001, author = "von Hicks, III, Michael", title = "Design of a Carbon Fiber Composite Grid Structure for the GLAST Spacecraft Using a Novel Manufacturing Technique", publisher = "Stanford Press", year = 2001, address = "Palo Alto", edition = "1st,", isbn = "0-69-697269-4" }

If the author does not use a comma to separate the name suffix from the last name, then curly brackets {Hicks III} may be used instead.

Cross-referencing

BibTeX allows referring to other publications via the crossref field. In the following example the 'author:06' publication references to 'conference:06'. @INPROCEEDINGS {author:06, title = {Some publication title}, author = {First Author and Second Author}, crossref = {conference:06}, pages = {330--331}, } @PROCEEDINGS {conference:06, editor = {First Editor and Second Editor}, title = {Proceedings of the Xth Conference on XYZ}, booktitle = {Proceeding of the Xth Conference on XYZ}, year = {2006}, month = {October}, }

Remember to add "booktitle" to the proceedings entry in order to avoid 'empty booktitle' BibTex warning.The LaTeX output of this input might look like::Author, First and Author, Second (October 2006), Some publication title, in: Proceedings of the Xth Conference on XYZ, pp 330-331.

See also

* Citation style language
* Comparison of reference management software

Free BibTeX-related software

Most reference management software‎ can handle BibTeX import and export. These packages use BibTeX as the primary language.
* bib2xhtml [http://www.spinellis.gr/sw/textproc/bib2xhtml/] converts BibTeX files into XHTML listings (GPL)
* BibDesk [http://bibdesk.sourceforge.net] — A Mac OS X application for managing references in the BibTeX format (BSD)
* bibget - [http://www.math.tamu.edu/~comech/tools/bibget/] — command-line front-end for Mathematical Reviews database (MathSciNet). Retrieves relevant references in BibTeX format, such as bibget a=gilkey t=invariance book 1984 or bibget r=MR783634 >> books.bib. Shell script for sh or bash. (GPL)
* bib-it - [http://bib-it.sourceforge.net/] A BibTeX manager. Can also generate style files.
* bibstuff - [http://code.google.com/p/bibstuff/] — a Python package for interacting with BibTeX style databases of citation references. Contains classes for parsing and storing BibTeX files, utilities for searching and labeling BibTeX entries, a utility for replacing in-text citations and creating bibliographies (e.g., in a reStructuredText document), and a module for defining citation styles. (MIT)
* bibutils - [http://www.scripps.edu/~cdputnam/software/bibutils/] Converts between various bibliography formats (including BibTeX) using the XML-based Library of Congress's Metadata Object Description Schema (MODS) as an intermediate. Available in many platforms. (GPL)
* Bibwiki - [http://www.plaschg.net/bibwiki/] — An extension to Mediawiki to manage BibTeX bibliographies. Import from Aleph and Amazon and generate lists of reference with BibTeX styles.
* Jabref — A free Java front end for managing references in the BibTeX format including PubMed and CiteSeer search interface (GPL)
* RefTeX — A reference management software package designed for use with Emacs and BibTeX. It can cooperate with the popular AUCTeX package. GPLed.
* Rtfbtx [http://www.spinellis.gr/sw/ports/rtfbtx/] — A collection of BibTeX style files that create Microsoft Word-compatible RTF output instead of LaTeX output. Pre-LaTeX Project Public License.
* Bibtex4Word [http://www.ee.ic.ac.uk/hp/staff/dmb/perl/bibtex4word.doc] — Microsoft Word macros allowing the citation of references from a BibTex database using a chosen formatting style.
* KBibTeX [http://www.unix-ag.uni-kl.de/~fischer/kbibtex/index.html] A KDE application for managing references in the BibTeX format. Features web queries (e. g. Google or PubMed) and exporting to RTF and XML/HTML. (GPL)
* Referencer [http://icculus.org/referencer/index.html] A GNOME application for managing references in the BibTex format. Features automatic metadata retrieval (DOI, Arxiv ID), a PDF preview view and tagging.(GPL)
* BibTex2Word2007 [http://sdudah.googlepages.com/bibtex2word2007bibliographyconverter] A simple AWK-based script that converts BibTex bibliography format into Microsoft Word 2007 format.(GPL)
* pybliographic [http://pybliographer.org/] Graphical interface (based on Gnome) including hierarchical search mechanism, direct insertion of references into LyX and Kile, direct queries on Medline, and more. (GPL)
* cb2bib [http://www.molspaces.com/d_cb2bib-overview.php] The cb2Bib is a tool for rapidly extracting unformatted, or unstandardized bibliographic references from email alerts, journal Web pages, and PDF files. (GPL)

Bibliography databases

* ACM Portal [http://portal.acm.org] , click on BibTeX link
* BibSonomy — A social bookmark and publication management system based on BibTeX.
* CiteSeer — An online database of research publications which can produce BibTeX format citations.
* CiteULike — A community based bibliography database with BibTeX input and output.
* The Collection of Computer Science Bibliographies — uses BibTeX as internal data format, search results and contributions primarily in BibTeX.
* Connotea — Open-source social bookmark style publication management system.
* Digital Bibliography & Library Project - A bibliography website that lists more than 910,000 articles on the computer science field.
* Google Scholar — Google's system for searching scholarly literature provides BibTeX format citations if you enable the option in 'Scholar Preferences'.
* HubMed — A versatile PubMed interface including BibTeX output.
* MathSciNet - Database by the American Mathematical Society (subscription), choose BibTeX in the "Select alternative format" box
* refbase - Open source reference manager for institutional repositories and self archiving with BibTeX input and output.

External links

* [http://www.ctan.org/get/biblio/bibtex/contrib/doc/btxdoc.pdf BibTeXing] The original manual (1988) by the author of BibTeX, Oren Patashnik.
* [http://dmoz.org/Computers/Software/Typesetting/TeX/BibTeX/ BibTeX tools from Open Directory]
* [http://www.tug.org/pracjourn/2006-4/fenn/ Managing Citations and Your Bibliography with BibTEX] by Jürgen Fenn (The PracTEX Journal 2006, number 4)
* [http://www.andy-roberts.net/misc/latex/latextutorial3.html BibTeX tutorial] . Section from "Getting to Grips with LaTeX" tutorials.
* [http://jo.irisson.free.fr/bstdatabase/ LaTeX Bibliography Style Database] . A database for BibTeX style files for various journals.
* [http://www.fb10.uni-bremen.de/anglistik/langpro/bibliographies/jacobsen-bibtex.html The BibTeX Format] . Description of the BibTeX format.
* [http://www.math.jhu.edu/~jkramer/bibtex/ BibTeX using LaTeX2e in WinEdt]
* [http://www.bibtex.org Quick and easy introduction to BibTeX] and a convenient online converter.
* [http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html BibTeX Style Examples] . Examples of more than 50 public-domain BibTeX style files.
* [http://amath.colorado.edu/documentation/LaTeX/reference/faq/bibstyles.pdf Bibliography Styles] . Illustration of how several bibliographic styles render citations and reference entries.
* [http://www.ctan.org/tex-archive/macros/latex/contrib/custom-bib/ Custom Bib] Package for generating customized bibliography styles (bst files).
* [ftp://ftp.tex.ac.uk/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf Tame the BeaST] . Useful BibTeX and BST reference manual.
* [http://manas.tungare.name/projects/isbn-to-bibtex ISBN to BibTeX Converter] Online BibTeX item generator based on given ISBN.


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • BibTeX — Entwickler Oren Patashnik Aktuelle Version 0.99d (2010) Betriebssystem …   Deutsch Wikipedia

  • Bibtex — Logo BibTeX ist ein Programm zur Erstellung von Literaturangaben und verzeichnissen in TeX oder LaTeX Dokumenten, entwickelt von Oren Patashnik. Inhaltsverzeichnis 1 Funktionsweise …   Deutsch Wikipedia

  • BibTeX — Saltar a navegación, búsqueda El Logo de BibTeX , escrito como BibTeX en texto llano (plain text), es una herramienta para dar formato a listas de referencias que se utiliza hab …   Wikipedia Español

  • BibTeX — est un logiciel de gestion de références bibliographiques et un format de fichier conçu par Oren Patashnik et Leslie Lamport en 1985 pour LaTeX. Il sert à gérer et traiter des bases bibliographiques. Sommaire 1 Mode de fonctionnement 1.1 Création …   Wikipédia en Français

  • Bibtex — est un logiciel et un format de fichier conçu par Oren Patashnik et Leslie Lamport en 1985 pour LaTeX. Il sert à gérer et traiter des bases bibliographiques. Sommaire 1 Mode de fonctionnement 1.1 Création de la bibliographie 1.1.1 Champs …   Wikipédia en Français

  • BibTeX — The BibTeX logo BibTeX  программное обеспечение для создания форматированных списков библиографии. BibTeX используется совместно с LaTeX ом и входит во все известные дистрибутивы TeX и …   Википедия

  • BibTeX — ● np. m. ►PAO Programme et format associé de stockage et de traitement de références bibliographiques, utilisé généralement en conjonction avec LaTeX …   Dictionnaire d'informatique francophone

  • .bib — BibTeX BibTeX est un logiciel et un format de fichier conçu par Oren Patashnik et Leslie Lamport en 1985 pour LaTeX. Il sert à gérer et traiter des bases bibliographiques. Sommaire 1 Mode de fonctionnement 1.1 Création de la bibliographie 1.1.1… …   Wikipédia en Français

  • .blg — BibTeX BibTeX est un logiciel et un format de fichier conçu par Oren Patashnik et Leslie Lamport en 1985 pour LaTeX. Il sert à gérer et traiter des bases bibliographiques. Sommaire 1 Mode de fonctionnement 1.1 Création de la bibliographie 1.1.1… …   Wikipédia en Français

  • .bst — BibTeX BibTeX est un logiciel et un format de fichier conçu par Oren Patashnik et Leslie Lamport en 1985 pour LaTeX. Il sert à gérer et traiter des bases bibliographiques. Sommaire 1 Mode de fonctionnement 1.1 Création de la bibliographie 1.1.1… …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”