컨텐츠로 건너뛰기

Introduction to BibTeX and the Incollection Type Entry

이 내용은 아직 번역본이 없습니다.

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.

BibTeX 항목을 관리할 간단한 솔루션이 필요하신가요? CiteDrive를 탐색해보세요!

  • 웹 기반 현대적인 참고 문헌 관리
  • 동료 연구자들과 협업하고 공유하기
  • Overleaf와의 통합
  • BibTeX/BibLaTeX에 대한 포괄적인 지원
  • 브라우저에서 직접 문서와 웹사이트 저장
  • 수천만 개의 참조가 있는 데이터베이스에서 새로운 기사 검색
CiteDrive 사용해보기 ► 데모 보기

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.