> 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/knowledge-base/103-latex-checklist-for-arxiv-submissions.md).

# arXiv 제출용 LaTeX 체크리스트

현재 arXiv는 LaTeX 프로젝트를 다음을 사용하여 컴파일합니다 [수정된 TeX Live 2023 버전](https://info.arxiv.org/help/faq/texlive.html). TeX Live의 다른 버전을 사용하는 프로젝트의 경우, arXiv에 제출할 때 호환성 문제가 발생할 수 있습니다. Overleaf에서는 [프로젝트를 컴파일하는 데 사용되는 TeX Live 버전을 선택할 수 있으며](https://www.overleaf.com/blog/new-feature-select-your-tex-live-compiler-version) 이를 통해 arXiv 제출에 가장 호환되는 TeX Live 버전을 선택할 수 있습니다.

또한 Overleaf에서는 오류 없이 컴파일되는 일부 프로젝트가 arXiv 서비스에 제출되면 예상치 못한 컴파일 오류를 만날 수 있습니다. 이 도움말 페이지에서는 몇 가지 일반적인 원인과 해결 방법을 설명합니다.

## Overleaf의 arXiv 제출 기능을 사용하고 있나요?

arXiv는 프로젝트에서 생성된 파일 일부를 포함한 zip 제출을 기대합니다. 이 파일들은 직접 얻을 수 있습니다(참조: [생성된 파일 보기](/latex/ko/knowledge-base/150-view-generated-files.md)), 하지만 **arXiv에 제출** 아래의 옵션 **제출** 버튼에서 이러한 파일이 포함된 zip 파일을 제공합니다. 이 옵션은 다음 아래에서 제공됩니다. **온라인 저장소** 제출 메뉴의 섹션. 프로젝트가 특정 저널 템플릿을 사용 중인 경우, **제출** 버튼에는 해당 템플릿에 대한 저널 외의 옵션이 포함되지 않을 수 있습니다. arXiv를 포함한 모든 제출 옵션을 보려면 프로젝트의 복사본을 만드세요: 복사본의 **제출** 버튼에는 템플릿용 저널뿐 아니라 모든 옵션이 포함됩니다.

## 호환되지 않는 TeX Live 버전을 사용하고 있나요?

이 글을 쓰는 시점(2023년 9월)에는 arXiv 서비스가 [LaTeX 제출물을 처리하는 데 TeX Live 2023을 사용합니다](https://arxiv.org/help/faq/texlive). 새 Overleaf 프로젝트는 — 처음부터 만들거나 또는 [프로젝트를 복사할 때](/latex/ko/knowledge-base/030-copying-a-project.md)— 역시 TeX Live 2023 버전을 기반으로 하지만, arXiv에서 사용하는 버전과 약간 다를 수 있습니다. Overleaf 프로젝트를 arXiv에 제출하는 사용자는 일부 LaTeX 패키지의 불가피한 차이로 인해 TeX Live 버전 불일치의 영향을 받을 수 있습니다. 현재로서는 arXiv 제출을 목표로 하는 모든 프로젝트를 다음을 사용해 TeX Live 2023을 사용하도록 구성할 것을 권장합니다 [Overleaf의 TeX Live 선택 기능](https://www.overleaf.com/blog/new-feature-select-your-tex-live-compiler-version).

## hyperref 패키지를 사용하고 있나요?

LaTeX 제출물을 처리할 때 arXiv는 `hyperref` 패키지를 필요한 옵션 집합과 함께 불러옵니다. 프로젝트에서도 `hyperref` 옵션과 함께 불러온다면, arXiv 제출에서 “Option clash for package hyperref” 오류가 발생할 수 있습니다.

다음을 설정해 보세요 `hyperref` 옵션을 패키지 로드와 분리해서. 예를 들어, 다음 줄

```latex
\usepackage[colorlinks,allcolors=black,pdftex]{hyperref}
```

은 다음과 같이 변경할 수 있습니다

```latex
\usepackage{hyperref}
\hypersetup{colorlinks,allcolors=black}
```

**참고로** [**필요하지도 않고(권장되지도) 않습니다**](https://arxiv.org/help/submit_tex#pdflatex) **없습니다 `pdftex` (또한 `dvips`, `dvipdfm`, ...) 옵션을 `hyperref` 다른 패키지에도 마찬가지입니다.**

만약 `hyperref` 패키지가 다음에 의해 불러와진다면 *문서 클래스* 또는 *패키지* 그렇다면 다음의 로드 방식을 변경하는 것이 현실적으로 어려울 수 있습니다 `hyperref` 옵션이 로드됩니다. 한 예로 다음을 사용하는 경우입니다 `\documentclass{mnras}`. 이런 경우에는 다음을 해야 할 수 있습니다 [arXiv가 자체적으로 삽입하는 것을 막아야 합니다 `hyperref` 명령](https://arxiv.org/help/faq/mistakes#nohypertex). 이는 프로젝트에 다음 이름의 파일을 추가하여 할 수 있습니다 `00README.XXX` 그리고 그 안에 다음 줄을 넣습니다:

```
nohypertex
```

## 메인 .tex 파일이 프로젝트 최상위 수준에 있나요?

메인 파일이 다음 안에 있는 경우 arXiv 제출이 컴파일되지 않을 수 있습니다 `.tex` 파일이 폴더 안에 있으므로, arXiv에 다시 제출하기 전에 해당 `.tex` 파일을 Overleaf 프로젝트의 루트 수준으로 옮겨 보세요. 또한 다음의 파일 경로를 업데이트해야 할 수도 있다는 점을 기억하세요 `\include`, `\input`, `\includegraphics` 및 `\bibliography` 명령 등.

## .png, .jpg 또는 .pdf 이미지 파일과 함께 .eps 이미지 파일을 사용하고 있나요?

arXiv는 `pdfLaTeX` 제출물을 처리할 때 사용하며, 물론 `pdfLaTeX` 직접 포함할 수 없습니다 `.eps` 그래픽 파일을 조판된 PDF에 넣을 수 없습니다. 먼저 다음이 사용할 수 있는 형식으로 변환해야 합니다 `pdfLaTeX` Overleaf는 자동으로 다음을 변환할 수 있습니다 `.eps` 파일을 다음으로 `.pdf` 형식으로 `pdfLaTeX` 컴파일할 수 있지만 arXiv에서는 이 기능이 활성화되어 있지 않을 수 있습니다. 따라서 arXiv의 컴파일에서는 다음을 포함하려는 명령에서 오류가 발생할 수 있습니다 `.eps` 파일, 예: `\includegraphics{plot.eps}`.

Overleaf 프로젝트에서 다음 형식의 그래픽을 사용한다면 `.eps` 형식이라면 다음 형식으로 변환할 것을 권장합니다 `.pdf` 형식으로 변환하여 프로젝트에 업로드한 다음 `.pdf` 버전을 직접 문서의 어떤 `\includegraphics` 명령 내에서 사용하세요.

## 추가 참고 자료

* [(arXiv) 자동 처리 실패를 유발하는 흔한 실수](https://arxiv.org/help/faq/mistakes)
* [TeX 제출 시 고려 사항(arXiv로)](https://arxiv.org/help/submit_tex)


---

# 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/knowledge-base/103-latex-checklist-for-arxiv-submissions.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.
