컨텐츠로 건너뛰기

How to Use BibTeX-Related Commands for LaTeX Documents

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

In order to use BibTeX in LaTeX, you need to know the following commands: \bibliographystyle{<style name>}, \bibliography{bib-file}, and \cite{KEY}. In this short guide post, we will discuss what each of these commands do and how to use them in your LaTeX documents.

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

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

bibliographystyle

The citation style is defined by bibliographystyle{<style name>}. BibTeX style files control the appearance of the bibliography and citations. BibTeX style files have a .bst extension and contain instructions in a stack-based programming language that controls the formatting of bibliographical entries. By default, LaTeX offers plain, unsrt, alpha, and abbrv as styles. natbib and jurabib are two LaTeX packages that provide extensive natural science and humanities additions, for example.

bibliography

The bibliography is created in the document by the command \bibliography{bibfile} if the file name of the BibTeX file with literature records is bibfile.bib.

cite

In a LaTeX document, the command \cite{KEY} is replaced by the citation given in the BibTeX file with this ID, which, for example, is (Author, Year) in the final PDF.