Aller au contenu

Introduction to BibTeX and the Incollection Type Entry

Ce contenu n’est pas encore disponible dans votre langue.

BibTeX is a reference management tool that is commonly used in LaTeX documents. It allows you to create a bibliographic database and easily include references in your LaTeX documents. In this guide, we will introduce BibTeX and explain the “incollection” type entry.

Vous avez besoin d'une solution simple pour gérer vos entrées BibTeX? Découvrez CiteDrive!

  • Gestion de références moderne et basée sur le web
  • Collaborez et partagez avec d'autres chercheurs
  • Intégration avec Overleaf
  • Support complet de BibTeX/BibLaTeX
  • Enregistrez des articles et des sites web directement depuis votre navigateur
  • Recherchez de nouveaux articles dans une base de données de dizaines de millions de références
Essayez CiteDrive ► Regarder la démo

What is BibTeX?

BibTeX is a program and file format used to manage bibliographic references in LaTeX documents. With BibTeX, you can store all of your references in a single file, and then include them in your LaTeX documents using citation keys. This makes it easy to add references to your document, change citation styles, and manage large bibliographies.

BibTeX has a number of different entry types that you can use to categorize your references. These include “article” for journal articles, “book” for books, “inproceedings” for papers published in conference proceedings, and many more.

What is the Incollection Type Entry?

The “incollection” BibTeX type is used for chapters or sections of books. It is similar to the “inproceedings” type, but is used for works published in a book rather than a conference proceedings.

Required Fields

The “incollection” BibTeX type requires the following fields:

  • author: The author(s) of the chapter or section.
  • title: The title of the chapter or section.
  • booktitle: The title of the book containing the chapter or section.
  • publisher: The name of the publisher of the book.
  • year: The year the book was published.

Optional Fields

In addition to the required fields, the “incollection” BibTeX type also has a number of optional fields that can be used to provide additional information. These fields include:

  • editor: The name(s) of the editor(s) of the book.
  • volume: The volume number of the book, if applicable.
  • number: The issue number of the book, if applicable.
  • series: The name of the series that the book belongs to, if applicable.
  • pages: The pages on which the chapter or section appears in the book.
  • address: The location of the publisher.
  • month: The month the book was published.

Example

Here is an example of how to use the “incollection” BibTeX type:

@incollection{mychapter,
title = {An Analysis of Example},
author = {John Smith},
year = 2022,
month = {June},
booktitle = {The Book of Examples},
publisher = {Example Publisher},
address = {New York, NY},
series = {Example Book Series},
volume = 1,
number = 2,
pages = {123--130},
editor = {Jane Doe}
}

In this example, the BibTeX entry defines a chapter titled “An Analysis of Example” authored by John Smith that appeared in the book “The Book of Examples”. The book was published in 2022 and edited by Jane Doe. The chapter appeared on pages 123-130 of volume 1, issue 2 of the “Example Book Series” published by Example Publisher in New York, NY.