> 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/30-how-do-i-insert-an-image-at-a-specific-point-in-the-document.md).

# 문서의 특정 위치에 이미지를 어떻게 삽입하나요?

LaTeX가 이미지를 배치할 위치에 영향을 주려면 이른바 *배치 지정자*, 이는 figure 환경에 제공되는 옵션입니다. 다음 코드 조각은 `[h!]`, 이는 LaTeX에게 *시도하도록* 그림을 문서의 다른 위치로 '떠다니게' 두는 대신, 텍스트에 나타난 바로 그 위치에 배치합니다.

```latex
\begin{figure}[h!]
  \caption{갈매기 사진.}
  \centering
  \includegraphics[width=0.5\textwidth]{이미지 파일 이름}
\end{figure}
```

사용했음에도 불구하고 `[h!]` LaTeX가 그림을 발견된 정확한 위치에 배치하지 못할 수도 있습니다. 그림 배치에 대한 자세한 내용은 Overleaf 문서를 참조하세요 [이미지와 표 배치하기](/latex/ko/figures-and-tables/02-positioning-images-and-tables.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/questions-and-answers/30-how-do-i-insert-an-image-at-a-specific-point-in-the-document.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.
