コンテンツにスキップ

BibTeX field type: author

このコンテンツはまだ日本語訳がありません。

In scholarly writing, accurately acknowledging the contributors to a work is fundamental. The author field in BibTeX allows you to specify all contributors to the work you are citing. It is imperative to ensure a consistent and precise arrangement of author names to avoid any misrepresentation or inaccurate citation output. Here, we explore various notations and conventions to specify author names in BibTeX effectively.

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

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

Detailed Overview

When specifying authors in BibTeX, you have multiple formats to choose from. These formats allow for the inclusion of first names, last names, and even suffixes, facilitating a detailed representation of each author’s identity. Let’s delve into the different notations that can be employed to accurately present author information.

Notation Formats

Notation: {Firstname Lastname}

The basic and straightforward way to note down an author is to use their first name followed by their last name. This is a widely accepted format but might not offer the control needed to distinguish clearly between first and last names, especially in cases of compound names.

Example:

@article{Doe2023,
title = {Title of the Article},
year = 2023,
author = {Isaac Newton},
...
}

Notation: {Lastname, Firstname}

A more refined approach involves using the last name followed by the first name, separated by a comma. This format is recommended as it provides a clearer distinction between the first and last names, avoiding any potential confusion.

Example:

@article{Doe2023,
title = {Title of the Article},
year = 2023,
author = {Newton, Isaac},
...
}

Notation: {Lastname, Suffix, Firstname}

In cases where there is a need to include a suffix (like Jr., Sr., III, etc.), this format comes in handy. It is important to maintain the order strictly to ensure accurate representation of the author’s name.

Example:

@article{Doe2023,
title = {Title of the Article},
year = 2023,
author = {King, Jr, Martin Luther},
...
}

Including Multiple Authors

When a work has multiple contributors, BibTeX accommodates this through the use of the AND separator. This separator is used to list multiple authors distinctly, adhering to the notation formats discussed above.

Example:

@article{Doe2023,
title = {Title of the Article},
year = 2023,
author = {Fisher, James AND Clark, John},
...
}

Conclusion

Accurately noting author names in BibTeX is essential in maintaining the integrity of scholarly writing. It ensures that readers can correctly identify and attribute works to the respective authors. Being familiar with the various notations and guidelines is crucial in crafting a bibliography that is both accurate and professional.

Remember, consistency is key. Once you choose a notation format, it should be consistently applied across all entries to maintain a cohesive and professional presentation.