> 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/68-i-ve-uploaded-figures-but-they-don-t-appear-in-my-document-what-is-wrong.md).

# 그림을 업로드했는데 문서에 나타나지 않습니다. 무엇이 문제인가요?

먼저 시도해 볼 한 가지: 파일을 업로드한 후에는 다음을 사용하여 파일을 포함했는지 확인해야 합니다.

```latex
\includegraphics
```

명령( graphicx 패키지에서)으로, 예를 들면:

```latex
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=\textwidth]{YOUR-FILE-NAME-HERE}
\end{document}
```

또 다른 가능한 원인은 문서 클래스 선언에서 "draft" 매개변수를 설정한 경우입니다(예: todonotes 패키지를 사용하는 경우):

```latex
\documentclass[11pt,A4paper,draft]{article}
```

이 매개변수는 문서 전체에 적용되며, 그 영향 중 하나는 그림을 끄는 것입니다(더 빠른 컴파일을 위해). "draft" 매개변수가 설정되어 있는지 확인하고, 제거해 보세요.

여전히 문제가 있다면, 다음으로 연락해 주세요. [문의해 주세요](https://www.overleaf.com/contact) 그러면 저희가 살펴보겠습니다. 문제를 더 빨리 찾을 수 있도록 메시지에 프로젝트 URL을 포함해 주세요.


---

# 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/68-i-ve-uploaded-figures-but-they-don-t-appear-in-my-document-what-is-wrong.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.
