> 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/questions-and-answers/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.md).

# 저널 템플릿의 IEEE에서 참고문헌에 bibtex를 사용하려고 합니다

IEEE 저널 템플릿 중 하나를 사용하는 많은 저자들이 bibtex를 사용해 참고문헌을 추가하는 데 도움을 요청합니다. 특히 IEEEexample.bib 및 IEEEabrv.bib 파일을 bibtex/bib 폴더에 업로드한 뒤에는 문서가 컴파일되게 만드는 것이 까다로울 수 있습니다. 아래는 비슷한 상황에 있는 분들께 도움이 되길 바라며 저희의 답변을 정리한 내용이고, 마지막에는 시작할 때 템플릿으로 사용할 수 있는 예제가 포함되어 있습니다.

먼저 IEEEtran.cls와 IEEEtran.bst 파일을 업로드했다면 삭제하는 것이 좋습니다. 이 파일들은 실제로 writeLaTeX에 내장되어 있기 때문에 프로젝트에 포함할 필요가 없으며, 보통은 내장 버전을 사용하는 것이 가장 좋습니다.

bibtex/bib 폴더를 만들어야 한다면 편집기의 프로젝트 메뉴를 통해 만들 수 있습니다. 메뉴를 연 뒤 폴더와 파일을 만드는 아이콘이 오른쪽 상단에 있습니다.

bibtex에서 생성되는 참고문헌 목록은 \bibliography 및 \bibliographystyle 명령에서 비롯되며, bibtex/bib 폴더에서 IEEEexample.bib 및 IEEEabrv.bib 파일을 사용하고 있다면 이 명령들은 다음과 같이 변경해야 합니다:

```latex
\bibliography{bibtex/bib/IEEEabrv.bib,bibtex/bib/IEEEexample.bib}{}
\bibliographystyle{IEEEtran}
```

이렇게 하면 bibtex가 두 개의 .bib 파일을 불러와 IEEEtran 참고문헌 스타일을 사용해 참고문헌을 서식 지정하도록 합니다.

참고: 템플릿의 원래 명령은 다음과 같았습니다:

```latex
\bibliography{mybib.bib}{}
\bibliographystyle{plain}
```

이는 bibtex에게 참고문헌으로 mybib.bib라는 파일을 사용하고, plain(내장) 스타일을 사용하라고 알려줍니다.

마지막으로, 이 모든 설정을 마친 뒤 흔히 발생하는 오류는 문서에 bib 파일의 어떤 항목도 참조하는 \cite 명령이 없을 때입니다. 아래 예시에서는 IEEEexample.bib에서 하나를 추가했습니다:

```latex
\cite{IEEEhowto:IEEEtranpage}
```

컴파일되도록 하기 위해서입니다. 자신만의 인용을 추가하기 시작하면 이것은 삭제하면 됩니다.

[여기에 Overleaf의 예제가 있으며, 바로 사용할 수 있도록 설정되어 있습니다.](https://www.overleaf.com/latex/templates/ieee-for-journals-template-with-bibtex-example-files-included/hjbyjvncdmpx)

bibtex에 대한 더 자세한 정보는 LaTeX 위키북 \[[참고문헌 관리 장](http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management)].


---

# 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/questions-and-answers/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.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.
