컨텐츠로 건너뛰기

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.