> 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/more-topics/40-multibib.md).

# Multibib

Multibib은 논문에서 여러 참고문헌 목록을 만들 때 사용할 수 있는 LaTeX 패키지입니다. 예를 들어 저널 논문을 담은 참고문헌 목록 하나, 교과서 참고문헌을 담은 목록 하나, 특허를 참조하는 또 다른 목록 하나 등을 만드는 데 유용합니다.

이 패키지는 \newcites 명령을 사용하여 여러 제목을 만들고 각 제목 아래에 적절한 인용을 배치합니다. 패키지는 표준 명령을 사용해 서문에 불러오며, 이 경우 \usepackage{multibib}입니다.

그다음에는 원하는 각 참고문헌 유형마다 한 번씩 \newcites 명령을 사용합니다.

예를 들어 책 자료용 참고문헌 하나와 저널 논문용 참고문헌 하나, 이렇게 두 개의 참고문헌 목록은 서문에 다음 LaTeX 시퀀스를 사용하여 만들 수 있습니다:

```latex
\usepackage{multibib}
\newcites{book}{책 참고문헌}
\newcites{journal}{저널 참고문헌}
```

위 예에서 첫 번째 인자는 참고문헌의 유형을 가리키고, 두 번째 인자는 참고문헌의 머리말을 만듭니다. 그런 다음 두 가지 유형의 인용을 하나 이상의 문장에 사용할 수 있습니다. 예를 들어 책과 저널 참고문헌은 다음과 같이 문장 안에 넣을 수 있습니다:

```latex
이 문장은 여기서 책을 \footcitebook{Walpol:2005} 인용하고, 여기서 저널을 \footcitejournal{Steinbeck:2013} 인용합니다.
```

참고문헌은 문서의 끝이나 원하는 섹션의 끝에 다음 시퀀스를 넣어 생성합니다:

```latex
\bibliographystylebook{plain}
\bibliographybook{all}
\bibliographystylejournal{plain}
\bibliographyjournal{all}
```

그다음 생성할 참고문헌 인스턴스마다 bibtex를 한 번씩 실행합니다. 이 경우 두 개가 있으므로 bibtex를 다음과 같이 두 번 실행해야 합니다:

```latex
% bibtex book
% bibtex journal
```

마지막으로 `.tex` 파일은 이 예제에서는 두 번 컴파일해야 합니다. *Overleaf는 필요할 때 이러한 단계를 자동으로 실행하고 반복하므로, 직접 수동으로 실행할 필요가 없습니다.*

다음은 참고문헌 두 개가 있는 완전한 LaTeX 코드의 예입니다:

```latex
\documentclass{article}
\usepackage{multibib}
\newcites{book}{책 참고문헌}
\newcites{journal}{저널 참고문헌}

\begin{document}
현상에 관한 가장 권위 있는 논문들 중 하나는
표면 플라스몬 공명에 대해 \cite{Homola:2006}가 작성했습니다.
같은 주제에 관한 저널 논문은 \cite{Merwe:2012}가 출판했습니다.
```

## 추가 읽을거리

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

* [Overleaf 갤러리의 Multibib 예제](https://www.overleaf.com/latex/examples/multiple-bibliographies-with-multibib/fzmrrgbcvqhf)


---

# 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/more-topics/40-multibib.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.
