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.