> 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/latex-1/19-latex-error-unknown-float-option-h.md).

# LaTeX 오류: 알 수 없는 부동체 옵션 \`H'

이 오류는 다음을 로드하는 것을 잊었을 때 나타납니다 **`float`** 패키지. 부동 지정자는 우리가 다음을 사용할 때마다 대괄호 안에 작성됩니다: *float* 예를 들어 그림이나 표와 같은 것, 즉 **`H`** 에서 **`\begin{figure}[H]`**. 다음 **`H`** 부동 지정자는 다음의 일부로 포함됩니다 **`float`** 패키지. 이는 컴파일러가 그림을 페이지의 다른 곳으로 옮기지 않고 정확한 그 위치에 배치하도록 지시합니다. 이 옵션을 사용하려면 언제나 **`\usepackage{float}`** 를 우리 문서의 프리앰블에 포함해야 합니다. 위치를 지정하기 위해 옵션을 사용하는 방법에 대해 더 읽으려면, 우리의 [문서](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md).

## 흔한 원인

**다음을 로드하는 것을 잊으면 `float` 패키지를 불러올 때 추가하세요:**

다음 [float 패키지](https://www.ctan.org/pkg/float?lang=en) 다음을 제공합니다 `H` 옵션. 이는 다음의 더 강한 버전입니다 `h`, 그리고 LaTeX에 우리가 그림이 *정확히* 여기에 나타나길 원한다고 알려줍니다. 우리가 `H` 옵션을 사용하지만, 다음을 포함하는 것을 잊으면 `\usepackage{float}` 를 프리앰블에 포함하지 않으면 아래와 같은 오류가 발생합니다

main.tex, 12행

LaTeX 오류: 알 수 없는 float 옵션 \`H'.

설명은 LaTeX 매뉴얼 또는 LaTeX Companion을 참조하세요. 즉시 도움말을 보려면 H를 입력하세요. ... l.10 \begin{figure}\[H] 옵션 \`H'는 무시되고 \`p'가 사용되었습니다.

이 오류를 해결하려면, 단순히 **`\usepackage{float}`** 를 문서의 프리앰블에, 즉 다음 이전에 포함하면 됩니다 **`\begin{document}`**


---

# 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/latex-1/19-latex-error-unknown-float-option-h.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.
