> 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/28-no-positions-in-optional-float-specifier.md).

# 선택적 부동체 지정자에 위치가 없습니다

이는 다음을 포함하지 않을 때 나타나는 표준 LaTeX 오류입니다. [float 지정자](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md) 플로트의 옵션, 즉 **`ht`** 에서 **`\begin{figure}[ht]`**. 플로트 지정자 매개변수는 그림이 어디에 배치될지를 더 세밀하게 제어할 수 있게 해 주는 옵션입니다. 사용할 수 있는 다양한 배치 옵션은 아래에 나열되어 있습니다:

| 지정자 | 허용                                                                                                  |
| --- | --------------------------------------------------------------------------------------------------- |
| h   | 플로트를 배치 *여기*, 즉, *대략적으로* 원문 텍스트에 나타나는 동일한 위치에 (하지만 *정확히* 그 지점에)                                     |
| t   | 위치시킨다 *상단* 에 배치합니다.                                                                                 |
| b   | 위치시킨다 *하단* 에 배치합니다.                                                                                 |
| p   | 플로트 전용의 특별한 *페이지에* 배치한다.                                                                            |
| !   | LaTeX가 "좋은" 플로트 위치를 결정하는 데 사용하는 내부 매개변수를 무시한다.                                                      |
| H   | 플로트를 LaTeX 코드의 정확한 위치에 배치합니다. 다음이 필요합니다: *float* 패키지(*\usepackage{float}*). 이는 어느 정도 다음과 같습니다 *h!*. |

이러한 *플로트 지정자* 는 플로트를 만들 때 대괄호 안에 넣을 수 있으며, 예를 들면 **`\begin{figure}[h]`**. 심지어 다음과 같은 조합으로도 사용할 수 있습니다 **`\begin{figure}[!htb]`**, 이는 LaTeX에게 그림을 배치하라고 지시합니다 *여기*, 또는 *상단*, 또는 *하단*. 예를 들어 다음과 같이 대괄호를 비워 두면 **`\begin{table}[]`**, 아래에 표시된 것과 같은 오류 메시지가 나타납니다.

main.tex

선택적 플로트 지정자에 위치가 없습니다.

## 오류 해결 방법

**대괄호 제거하기:**

이 오류를 없애는 가장 간단한 방법은 플로트 지정자를 사용하지 않을 때 대괄호를 제거하는 것입니다. 즉, 다음과 같이 쓰는 대신 **`\begin{figure}[]`**, 다음과 같이 간단히 쓰면 됩니다 **`\begin{figure}`**.

**플로트 지정자 삽입하기:**

이 오류를 해결하는 또 다른 방법은 다음을 삽입하는 것입니다. [float 지정자](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md) LaTeX에 플로트가 어디에 나타나기를 원하는지 알려 주는 것입니다. 이는 다음과 같이 대괄호 안에 포함되어야 합니다, 예를 들면 **`\begin{figure}[h]`** 또는 **`\begin{table}[!htb]`**.


---

# 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/28-no-positions-in-optional-float-specifier.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.
