Skip to Main Content

LaTeX: BibTeX

BibTeX 란?

{\mathrm{B{\scriptstyle{IB}} \! T\!_{\displaystyle E} \! X}}

Bibliography+TeX.

LaTeX 문서와 함께 사용하여 Reference를 정의하고, 처리하기 위한 파일형식.

확장자: .bib

- 추가 정보 및 이용 안내
: http://www.bibtex.org/

 

EndNote Reference를 BibTex로 변환하기

1단계. EndNote Reference에 Key 값 부여하기

  • BibTex의 참고문헌을 인용하려면 키 값이 필요하다. Label 필드에 키 값을 입력하면 추후 Key로 사용할 수 있다.
      Tip. 각 Reference에는 이미 고유값인 Reference Number가 있다. 이 값을 Label 필드로 일괄 복사하여 Key 값으로 사용할 수 있다.
             (필드 복사 기능: Tools>Change/Move/Copy Fields>Copy Fields)

2단계. EndNote Reference를 BibTex 파일로 만들기

  • 인용할 Reference나 그룹을 선택한다.
  • File > Export > Output style을 BibTex로 지정(드롭다운 목록에 없을 시 Select Another Style>Bibtex export), Latex 문서 파일과 같은 위치에 같은 파일명으로 저장
  • 파일 확장자를 .bib 으로 변경한다.

(.bib 파일 예시)

@article{19,
   author = {Adolphs, Ralph},
   title = {Cognitive neuroscience of human social behaviour},
   journal = {Nature Reviews Neuroscience},
   volume = {4},
   number = {3},
   pages = {165-178},
   ISSN = {1471-003X},
   DOI = {10.1038/nrn1056},
   url = {http://www.nature.com/nrn/journal/v4/n3/pdf/nrn1056.pdf},
   year = {2003},
   type = {Journal Article}
}

@article{15,
   author = {Barbey, A. K. and Colom, R. and Grafman, J.},
   title = {Neural mechanisms of discourse comprehension: a human lesion study},
   journal = {Brain},
   volume = {137},
   number = {Pt 1},
   pages = {277-287},
   ISSN = {0006-8950},
   DOI = {Doi 10.1093/Brain/Awt312},
   url = {<Go to ISI>://WOS:000330434000026
http://brain.oxfordjournals.org/content/137/1/277.full.pdf},
   year = {2014},
   type = {Journal Article}
}

3단계. LaTex 문서에서 인용하기 

 \begin{document}

 \nocite{인용할 모든 Reference의 Key 값을 Reference List에서 표시할 순서대로(선택사항)}

 This monograph is not confined to mechanical twinning in the narrow sense.\cite{인용할 key 값}

 \bibliographystyle{Style 이름}

 \bibliography{.bib 파일명}

 \end{document}

(LaTeX 편집기에서 문서 작성 예시)

(예시 문서 Compile 결과)