> 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/35-how-do-i-specify-the-size-of-an-image-in-latex.md).

# LaTeX에서 이미지의 크기를 어떻게 지정하나요?

Overleaf 문서에 그림을 포함하려면 먼저 [프로젝트에 업로드해야 합니다](/latex/ko/knowledge-base/088-including-images-on-overleaf.md). 이미 로드했다고 가정하면 `graphicx` 패키지를 문서 서문에 추가하면:

```latex
\usepackage{graphicx}
```

이미지의 (조판) 크기는 다음을 사용하여 지정합니다 `scale=...` 옵션을 사용합니다 `\includegraphics` 명령:

```latex
\includegraphics[width=0.5\textwidth]{my-uploaded-figure.png}
```

## 예제

* **참고**: 다음 예제는 그래픽 파일(`example-image.pdf`)을 제공하는 `mwe` 패키지입니다. 이러한 그래픽 파일은 TeX Live와 함께 배포되므로 Overleaf 서버에 저장되며, 아래 예제와 같은 이미지 자리표시자로 사용할 수 있습니다.

```latex
\documentclass{article}
\usepackage{graphicx}
\begin{document}
이미지의 원래 크기:

\vspace{3pt}
\includegraphics{example-image.pdf}

\vspace{12pt}
50\%로 크기 조정된 이미지:

\vspace{3pt}
\includegraphics[scale=0.5]{example-image.pdf}

\vspace{12pt}
25\%로 크기 조정된 이미지:

\vspace{3pt}
\includegraphics[scale=0.25]{example-image.pdf}
\end{document}
```

[이 예제를 Overleaf에서 열기](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=How+to+change+the+size+of+an+image\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bgraphicx%7D%0A%5Cbegin%7Bdocument%7D%0ANatural+size+of+the+image%3A%0A%0A%5Cvspace%7B3pt%7D%0A%5Cincludegraphics%7Bexample-image.pdf%7D%0A%0A%5Cvspace%7B12pt%7D%0AImage+scaled+to+50%5C%25%3A%0A%0A%5Cvspace%7B3pt%7D%0A%5Cincludegraphics%5Bscale%3D0.5%5D%7Bexample-image.pdf%7D%0A%0A%5Cvspace%7B12pt%7D%0AImage+scaled+to+25%5C%25%3A%0A%0A%5Cvspace%7B3pt%7D%0A%5Cincludegraphics%5Bscale%3D0.25%5D%7Bexample-image.pdf%7D%0A%5Cend%7Bdocument%7D)

이 예제는 다음과 같은 출력을 생성합니다:

![LaTeX에서 이미지 크기를 변경하는 방법 ion](/files/a38a6edabc65e58043034df074e9daba369b9a68)

기본 논문 템플릿에도 이에 대한 예제가 있습니다—다음 방법으로 직접 해보세요 [새 논문을 생성하여](https://www.overleaf.com/docs?template=paper) 이미지가 어떻게 `frog.jpg` 다음을 작성하면 텍스트 너비의 일부로 크기가 조정되는지 확인할 수 있습니다:

```latex
\includegraphics[width=0.3\textwidth]{frog.jpg}
```


---

# 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/35-how-do-i-specify-the-size-of-an-image-in-latex.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.
