| Bibtex |
Website Links For Bibtex |
Information AboutBibtex |
| CATEGORIES ABOUT BIBTEX | |
| bibtexbibtex | |
| reference management software | |
| tex | |
|
, written as BibTeX in plain text, is a tool for formatting Lists Of References . The BibTeX tool is typically used together with the LaTeX document preparation system. 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. SYNTAX A LaTeX file must contain the following:
The \bibliography{} command tells LaTeX which file or files to use as its source for bibliography entries. \bibliography{linguistics} will cause LaTeX to look for a file named linguistics. \bibliography{linguistics,math} will cause LaTeX to look for the two files linguistics and math.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:
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 ; 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 (markup Language) compatibility. Required fields: author, title, booktitle, year Optional fields: editor, pages, organization, publisher, address, month, note, key ; inbook: A part of a book, which 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.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. SEE ALSO REFERENCES EXTERNAL LINKS
|
|
|