> 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/088-including-images-on-overleaf.md).

# Overleaf에 이미지 포함하기

Overleaf에서 문서를 편집할 때 이미지를 포함하는 것은 간단합니다. 이 문서에서는 컴퓨터나 URL에서 프로젝트로 이미지를 업로드하는 방법과, 이를 조판 문서에 포함하는 방법을 설명합니다.

## 간단한 이미지 업로드

|                                                                                                                   |                                                                        |
| ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| 이미지를 업로드하려면 편집기에서 왼쪽 상단 모서리로 가서 업로드 아이콘을 클릭하세요 ![Uploadicon.png](/files/75c4e0b6addb081726ab79d301f6551fb30cd702) | ![V2uploadbutton.png](/files/b59b6e536929cf0fc7cb89348e9ba3022348f397) |

|                            |                                                                          |
| -------------------------- | ------------------------------------------------------------------------ |
| 파일을 업로드할 수 있는 대화 상자가 나타납니다 | ![V2uploaddialogue.png](/files/d3d5d29f7876e2d31612075df6aba84142d12a5d) |

|                                                          |                                                                            |
| -------------------------------------------------------- | -------------------------------------------------------------------------- |
| 여기에서 파일을 드래그 앤 드롭하거나 클릭할 수 있습니다 ***파일 선택*** 파일 브라우저를 열려면 | ![UploadingImagesEx3.png](/files/7e9d0c701c4e582562d5c7f569a8e6493fcfe058) |

|                                                                                        |                                                                             |
| -------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| 올바른 폴더로 이동하여 업로드할 이미지를 선택하세요. 여러 파일을 한 번에 업로드할 수 있습니다. 업로드가 완료되면 왼쪽 패널에서 파일을 볼 수 있습니다. | ![UploadingImagesEx3b.png](/files/9039113c810e843493a8e903d87a9f71c8ef09e2) |

이제 LaTeX 파일 내에서 이미지를 사용할 수 있습니다. 아래 예를 보세요

```latex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\title{이미지가 포함된 프로젝트}
\author{Overleaf}
\date{}

\begin{document}

\maketitle

\section{Introduction}
\begin{figure}[htp]
    \centering
    \includegraphics[width=4cm]{InsertingImagesEx5}
    \caption{은하의 이미지}
    \label{fig:galaxy}
\end{figure}

\end{document}
```

![UploadingImagesEx5b.png](/files/0afc760900a97cc960e93d7d79015bd8376a8a78)

이미지의 파일 이름만 다음의 매개변수로 전달된다는 점에 유의하세요 `\includegraphics[width=4cm]{lion-logo}`

LaTeX에서 그림 조작에 대한 자세한 정보는 다음을 참조하세요 [추가 읽기](#further-reading) 다른 문서 페이지로 연결되는 링크를 확인하세요.

## 폴더에 이미지 업로드하기

프로젝트에 이미지가 여러 개 포함되어 있다면, 모든 것을 정리하기 위해 별도의 폴더에 넣어야 할 수 있습니다.

|                                                                                                                        |                                                                             |
| ---------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| Overleaf에서 폴더를 만들려면 편집기 왼쪽 상단 모서리로 가서 폴더 아이콘을 클릭하세요 ![Foldericon.png](/files/088454198846b654662b5759b292a442acdf63f4) | ![UploadingImagesEx6b.png](/files/3a24308c3c7faae52007661beb335853459e73e3) |

|                                         |                                                                             |
| --------------------------------------- | --------------------------------------------------------------------------- |
| 입력 상자가 나타나면 폴더 이름을 지정하고 클릭하세요 ***만들기*** | ![UploadingImagesEx7b.png](/files/c746adf44a75dac1c9cee19b422dc213fe7d2e70) |

|                                                                       |                                                                             |
| --------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| 이제 왼쪽 패널에서 폴더를 볼 수 있습니다. 이미 업로드한 파일을 왼쪽 패널의 폴더 사이로도 드래그 앤 드롭할 수 있습니다. | ![UploadingImagesEx8b.png](/files/3264cd5cf07ffe9b601ecc8ab58b5e30ea78320c) |

파일을 폴더에 직접 업로드하려면 해당 폴더를 클릭한 다음 다음을 클릭하세요 ***새로 만들기*** 그리고 다음의 안내를 따르세요 [이전 섹션](#simple-image-upload).

폴더에 파일이 몇 개 있으면 문서에서 사용할 수 있습니다. 아래 예를 보세요.

```latex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\title{이미지가 포함된 프로젝트}
\author{Overleaf}
\date{}

\graphicspath{{Images/}}

\begin{document}

\maketitle

\section{Introduction}
\begin{figure}[htp]
    \centering
    \includegraphics[width=4cm]{InsertingImagesEx5}
    \caption{은하의 이미지}
    \label{fig:galaxy}
\end{figure}

\end{document}
```

![UploadingImagesEx5b.png](/files/0afc760900a97cc960e93d7d79015bd8376a8a78)

명령은 `\graphicspath{ {Images/} }` LaTeX에 이미지가 다음 위치에 저장되어 있음을 알려줍니다 *이미지*, 이제 다음에서 전체 경로 대신 파일 이름만 사용하면 됩니다 `\includegraphics`

LaTeX에서 이미지 관리에 대한 자세한 정보는 다음을 참조하세요 [추가 읽기](#further-reading) 링크를 확인하세요.

## 빠른 안내

* **Overleaf 프로젝트에 하나 이상의 이미지를 업로드하는 간단한 안내:**

편집기 왼쪽 상단 모서리에서 업로드 아이콘을 클릭한 다음, 파일을 드래그 앤 드롭하거나 파일 선택을 클릭하여 로컬 디렉터리를 탐색할 수 있습니다. 업로드가 완료되면 문서에서 이 이미지를 사용할 수 있습니다.

* **폴더에 이미지를 업로드하는 간단한 안내:**

편집기에서 새 폴더를 만들려면 폴더 아이콘을 클릭하고 폴더 이름을 지정한 다음 만들기를 클릭하세요. 이제 새로 만든 폴더를 클릭하고 이전 문단에 설명된 절차를 따라 이미지를 업로드하거나, 이미 업로드한 이미지를 폴더로 드래그 앤 드롭하세요.

## 추가 읽을거리

LaTeX에서 이미지 조작에 대해 더 알아보려면 다음을 참조하세요.

* [이미지 삽입](/latex/ko/more-topics/27-inserting-images.md)
* [이미지와 표 배치하기](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md)
* [표와 그림 목록](/latex/ko/figures-and-tables/03-lists-of-tables-and-figures.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/knowledge-base/088-including-images-on-overleaf.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.
