> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/ko/references-and-citations/04-bibtex-bibliography-styles.md).

# BibTeX 참고문헌 스타일

## 소개 및 예제

다음을 사용할 때: [BiBTeX](/latex/ko/references-and-citations/01-bibliography-management-with-bibtex.md), 참고문헌 스타일이 설정되고 참고문헌 파일은 다음 두 명령으로 가져와집니다:

```latex
  \bibliographystyle{stylename}
  \bibliography{bibfile}
```

여기서 `bibfile` 은 참고문헌의 이름입니다 `.bib` 파일이며, 확장자 없이 `stylename` 은 아래 [표에 표시된 값 중 하나입니다](#table-of-stylename-values).

Overleaf에서 열 수 있는 예제가 있습니다— `.bib` 파일이 생성됩니다:

```latex
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
%목차에 "References"를 포함합니다
\usepackage[nottoc]{tocbibind}

%문서의 제목, 날짜 및 저자
\title{참고문헌 관리: BibTeX}
\author{Overleaf}

%문서의 시작
\begin{document}

\maketitle

\tableofcontents

\medskip

\section{첫 번째 섹션}
이 문서는 참고문헌 관리에 BibTeX를 사용하는 예제입니다. 세 개의 항목이 인용됩니다: \textit{The \LaTeX\ Companion} 책 \cite{latexcompanion}, Einstein 저널 논문 \cite{einstein}, 그리고 Donald Knuth의 웹사이트 \cite{knuthwebsite}. \LaTeX\ 관련 항목은 \cite{latexcompanion,knuthwebsite}입니다.

\medskip

%참고문헌 스타일을 UNSRT로 설정하고 다음을 불러옵니다
%참고문헌 파일 "sample.bib".
\bibliographystyle{unsrt}
\bibliography{sample}
\end{document}
```

[Overleaf에서 열기(적절한 .bib 파일이 생성됩니다)](<https://www.overleaf.com/docs?engine=\&snip_name\[]=main.tex\&snip\[]=\documentclass\[a4paper,10pt]{article}&#xA;\usepackage\[english]{babel}&#xA;%Includes+"References"+in+the+table+of+contents&#xA;\usepackage\[nottoc]{tocbibind}&#xA;&#xA;%Title,+date+an+author+of+the+document&#xA;\title{Bibliography+management:+BibTeX}&#xA;\author{Overleaf}&#xA;&#xA;%Begining+of+the+document&#xA;\begin{document}&#xA;&#xA;\maketitle&#xA;&#xA;\tableofcontents&#xA;&#xA;\medskip&#xA;&#xA;\section{First+Section}&#xA;This+document+is+an+example+of+BibTeX+using+in+bibliography+management.+Three+items+are+cited:+\textit{The+\LaTeX\\+Companion}+book+\cite{latexcompanion},+the+Einstein+journal+paper+\cite{einstein},+and+the+Donald+Knuth's+website+\cite{knuthwebsite}.+The+\LaTeX\\+related+items+are+\cite{latexcompanion,knuthwebsite}.+&#xA;&#xA;\medskip&#xA;&#xA;%Sets+the+bibliography+style+to+UNSRT+and+imports+the+&#xA;%bibliography+file+"sample.bib".&#xA;\bibliographystyle{unsrt}&#xA;\bibliography{sample}&#xA;\end{document}\&snip_name\[]=sample.bib\&snip\[]=@article{einstein,&#xA;++author+=+++++++"Albert+Einstein",&#xA;++title+=++++++++"{Zur+Elektrodynamik+bewegter+K{\\"o}rper}.+({German})&#xA;+++++++++++++++++\[{On}+the+electrodynamics+of+moving+bodies]",&#xA;++journal+=++++++"Annalen+der+Physik",&#xA;++volume+=+++++++"322",&#xA;++number+=+++++++"10",&#xA;++pages+=++++++++"891--921",&#xA;++year+=+++++++++"1905",&#xA;++DOI+=++++++++++"http://dx.doi.org/10.1002/andp.19053221004"&#xA;}&#xA;&#xA;@book{latexcompanion,&#xA;++++author++++=+"Michel+Goossens+and+Frank+Mittelbach+and+Alexander+Samarin",&#xA;++++title+++++=+"The+\LaTeX\\+Companion",&#xA;++++year++++++=+"1993",&#xA;++++publisher+=+"Addison-Wesley",&#xA;++++address+++=+"Reading,+Massachusetts"&#xA;}&#xA;+&#xA;@misc{knuthwebsite,&#xA;++++author++++=+"Donald+Knuth",&#xA;++++title+++++=+"Knuth:+Computers+and+Typesetting",&#xA;++++url+++++++=+"http://www-cs-faculty.stanford.edu/\\~{}uno/abcde.html"&#xA;}\&main_document=main.tex>)

## 스타일 이름 값 표

| stylename | 출력                                                                         |
| --------- | -------------------------------------------------------------------------- |
| `abbrv`   | ![BibtexStylesEx1.png](/files/01901fd64bdec9e46aed9388b441ff979db9392c)    |
| `acm`     | ![BibtexStylesEx2.png](/files/c14eaf8c404b22f4002e15b6bf9b77b07ae66bb9)    |
| `alpha`   | ![BibtexStylesEx3.png](/files/c6d5bf03b2243384a8f8b20a3648282569c0824d)    |
| `apalike` | ![BibtexStylesEx4.png](/files/353ac59948be8e0850c34ab12059a65afbfb5906)    |
| `ieeetr`  | ![BibtexStylesEx5.png](/files/f9e5a2886da7715f88bc414d17676590c4279c21)    |
| `plain`   | ![BibtexStylesEx6new.png](/files/cd3bc09ada2d727f1a22bf31985d0e0878a98106) |
| `siam`    | ![BibtexStylesEx7.png](/files/0695e1342876a9914012bd344ece2b44477c93d1)    |
| `unsrt`   | ![BibtexStylesEx8.png](/files/20db4dd106bcc5db8f38566faf411c1cff095aba)    |

## 추가 읽을거리

자세한 내용은 다음을 참조하세요:

* [bibtex를 사용한 참고문헌 관리](/latex/ko/references-and-citations/01-bibliography-management-with-bibtex.md)
* [CTAN 웹사이트의 BibTeX 문서](http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/)
* [tocbind 패키지 문서](ftp://ftp.tex.ac.uk/tex-archive/macros/latex/contrib/tocbibind/tocbibind.pdf)
* [natbib를 사용한 참고문헌 관리](/latex/ko/references-and-citations/02-bibliography-management-with-natbib.md)
* [biblatex를 사용한 참고문헌 관리](/latex/ko/references-and-citations/03-bibliography-management-with-biblatex.md)
* [목차](/latex/ko/document-structure/02-table-of-contents.md)
* [대규모 프로젝트에서의 관리](/latex/ko/document-structure/07-management-in-a-large-project.md)
* [다중 파일 LaTeX 프로젝트](/latex/ko/document-structure/08-multi-file-latex-projects.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/ko/references-and-citations/04-bibtex-bibliography-styles.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
