BibTeXの引用キー

このページは現在日本語で利用できませんので、英語で表示されています。このページの翻訳を手伝ってサポートしていただけませんか?このページを翻訳する

The citation key is a unique identifier in BibTeX that is used to identify a specific source in your bibliography file. The citation key is used in the \cite{key} command to generate a citation in your LaTeX document, as well as in the bibliography file to refer to the source, or in pandoc-based markdown files, such as when using Quarto or R Markdown with [@key].

BibTeXエントリーを管理する簡単なソリューションが必要ですか?CiteDriveをご覧ください!

  • ウェブベースでモダンな参照管理
  • 研究者同士での共同作業と共有
  • Overleafとの統合
  • BibTeX/BibLaTeXの包括的なサポート
  • ブラウザから直接記事とウェブサイトを保存
  • 数千万もの参照があるデータベースから新しい記事を検索
CiteDriveを試す

To define a citation key in a BibTeX bibliography file, use the @ command followed by the entry type (e.g., @article, @book, etc.), followed by the citation key enclosed in curly braces. As an example:

@article{key,
author = {John Smith},
title = {The Great Article},
journal = {Journal of Great Articles},
year = {2021},
volume = {1},
number = {2},
pages = {3-4}
}

In this example, the citation key is “key.” You can choose any unique identifier you want as the citation key as long as it does not contain any spaces or special characters. It is a good idea to choose a descriptive citation key that is easy to remember so that it is easy to use in your LaTeX document. It is frequently formed from the first author’s surname, the date, and the first non-stopper word in the source’s title.