> 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/tex-latex-1/06-hfuzz.md).

# \hfuzz

TEX는 상자가 내용 초과(overfull)라고 간주되어 그렇게 보고될지 여부에 대한 판단에 영향을 줄 수 있는 명령을 제공합니다. 예를 들어, 다음에서 `.log` 파일에 있습니다.

* `\hfuzz[=]` *차원*: `\hfuzz` 은 다음의 내용이 `\hbox` 그 상자의 너비를 초과할 수 있는 정도를 `\hbox` 내용 초과로 간주되기 전에 지정합니다.
* `\vfuzz[=]` *차원*: `\vfuzz` 은 다음의 내용이 `\vbox` 그 상자의 높이를 초과할 수 있는 정도를 `\vbox` 내용 초과로 보고되기 전에 지정합니다.

다음에 유의하자:

* “`[=]`”은 등호가 선택 사항임을 의미합니다.
* *차원* 은 TEX가 이해할 수 있는 단위로 지정된 값입니다. 예: pt, bp, mm 등.

**사용 예**

* `\hfuzz=0.5pt` 또는 `\hfuzz 0.5pt` (“=”는 선택 사항입니다)
* `\vfuzz=0.75pt` 또는 `\vfuzz 0.75pt` (“=”는 선택 사항입니다)

#### 예제

“Overleaf”라는 단어를 다음의 상자에 넣으면 `\hbox` 그리고 그 너비를 측정하면(기본 글꼴 사용):

```
\setbox99=\hbox{Overleaf}\the\wd99
```

36.41675pt라는 값을 볼 수 있습니다. 이제 “Overleaf”를 다음의 상자에 넣고 `\hbox` 너무 좁은, 예를 들어 36pt짜리 상자에 넣고 [`\overfullrule`](/latex/ko/tex-latex-1/07-overfullrule.md) 값을 0이 아닌 값으로 설정하면:

```
\overfullrule=5mm
\hbox to 36pt{Overleaf}
```

다음 그림은 출력 결과를 보여 줍니다:

![](/files/e26d071618b121c0530b30dadd97fd55e4d62168)

만약 우리가 다음을 설정하면 `\hfuzz=0.5pt` 그리고 위의 실험을 다시 반복하면:

```
\overfullrule=5mm
\hfuzz=0.5pt
\hbox to 36pt{Overleaf}
```

다음 그림에서:

![](/files/2d2913615392d4bbc2c68967a794b27920b64b96)

TEX가 더 이상 다음을 내용 초과로 간주하지 않음을 보여 줍니다 `\hbox to 36pt{Overleaf}` 내용 초과로 간주하지 않으므로, 다음을 추가하지 않습니다 [`\overfullrule`](/latex/ko/tex-latex-1/07-overfullrule.md) rule을 추가하지 않습니다. 왜냐하면 다음의 값이 `\hfuzz` (0.5pt)는 그것을 막기에 딱 충분합니다.

의 동작은 `\vfuzz` 은 다음과 유사합니다 `\hfuzz`—다만 TEX는 vbox에 대해서는 내용 초과 rule을 표시하지 않습니다.

#### \hfuzz에 대한 자세한 설명

TEX가 *실제로* 확인하는 것은 재료의 초과 너비와 전체(0차) 수축 글루의 차이입니다. 예를 들어, 어떤 내용의 전체 너비가 100pt이고 원하는 상자 너비가 95pt라고 합시다. TEX가 흡수해야 하는 초과 너비는 5pt이며, 사용 가능한 글루를 5pt만큼 줄여야 합니다. 전체 0차 글루 수축이 4pt라고 가정하면, TEX는 현재 다음의 값을 비교합니다 `\hfuzz` 5pt의 값과$$-$$4pt$$=$$1pt.

#### 관련 명령

참고:

* [`\overfullrule`](/latex/ko/tex-latex-1/07-overfullrule.md)
* [`\hbadness`](/latex/ko/tex-latex-1/05-hbadness.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/tex-latex-1/06-hfuzz.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.
