> 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/06-extra-right.md).

# 추가 \right

이 오류는 수식을 조판할 때 \right 명령을 사용했지만 대응하는 \left가 없을 때 발생합니다. 이 글에서는 이 오류의 일반적인 원인과 해결 방법을 다룹니다.

## \left 및 \right 명령에 대한 간단한 소개

다음 `\left` 및 `\right` 명령은 동적으로 크기가 정해지는 구분 기호를 조판하며, 수학식 안에서 다음 형식으로 함께 사용해야 합니다.

$$\verb'\left'\thinspace\textit{delim}*{\thinspace\text{L}}\quad\textit{math expression}\quad \verb'\right'\thinspace\textit{delim}*{\thinspace\text{R}}$$

여기서 $$\textit{delim}*{\thinspace\text{L}}$$ 및 $$\textit{delim}*{\thinspace\text{R}}$$ 는 수식을 감싸는 데 사용되는 구분 기호입니다 $$\textit{math expression}$$. 일반적으로 $$\textit{delim}*{\thinspace\text{L}}$$ 및 $$\textit{delim}*{\thinspace\text{R}}$$ 는 다음 문자 중 하나입니다 `() [] | \| \{ \}` 또는 점 ‘`.`’인데, 이는 “[빈 구분 기호](#using-a-blank-delimiter)”로 사용됩니다.

### 예제

다음은 ...을 사용하는 예제입니다 `\left` 및 `\right` 분수를 완전히 감싸는 괄호를 조판하려면:

```latex
\[
  \left(\frac{x}{y} \right)
\]
```

이 코드는 $$\left(\frac{x}{y}\right)$$

\left 명령을 사용하지 않으면 `\left` 및 `\right` 구분 기호(괄호 포함)를 배치할 때 명령을 사용하지 않으면, 그 구분 기호는 수학식을 완전히 감싸지 못합니다. 예를 들어,

```latex
\[
  (\frac{x}{y})
\]
```

라고 쓰면 다음이 만들어집니다

$$(\frac{x}{y})$$

## 이 오류의 원인과 몇 가지 해결 방법

### \left 명령을 포함하는 것을 잊음

이 오류는 일반적으로 다음과 같은 `\right` 명령을 작성할 때 해당하는 `\left`아래 예시에서 보듯이:

```latex
\[
\pi =
( \int_{-\infty}^{+\infty} e^{-x^2} dx \right)
\]
```

[이 예제를 **오류를 생성하는** Overleaf의 예](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Example+demonstrating+a+missing+delimiter\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cbegin%7Bdocument%7D%0A%5C%5B+%0A%5Cpi+%3D+%0A%28+%5Cint_%7B-%5Cinfty%7D%5E%7B%2B%5Cinfty%7D+e%5E%7B-x%5E2%7D+dx+%5Cright%29%0A%5C%5D%0A%5Cend%7Bdocument%7D)

이 예시는 다음 오류를 발생시킵니다:

![LaTeX에서 누락된 구분 기호를 보여 주는 이미지](/files/c76823ea62f480fb76d7f142016e2f38beaf90d0)

누락된 `\left` 을 추가하여 이 오류를 수정하려면

```latex
\[
\pi =
\left( \int_{-\infty}^{+\infty} e^{-x^2} dx \right)
\]
```

다음과 같은 출력을 생성합니다

$$\pi = \left( \int\_{-\infty}^{+\infty} e^{-x^2} dx \right)$$

### 빈 구분 기호 사용

만약 다음을 조판하고 싶다면 `\right` 구분 기호만 조판하려면 ‘`.`’ 문자를 다음으로 사용하세요 `\left` 구분 기호로 사용하여 `\left.`이는 구분 기호 문자를 조판하지 않습니다. 다음 예에서는 `.` 구분 기호를 `aligned` 환경에서 `amsmath` 패키지를 불러올 때 추가하세요:

```latex
\documentclass{article}
\usepackage{amsmath} % Required to use the aligned environment

\begin{document}
\[
 \left.\begin{aligned}
        dF &= 0,\\
        d^{\dagger} F &= 0,
       \end{aligned}
\ \right\}
 \qquad \text{Maxwell's equations}
\]
\end{document}
```

[이 예제를 Overleaf에서 열기](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Using+the+dot+delimiter\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bamsmath%7D+%25+Required+to+use+the+aligned+environment%0A%0A%5Cbegin%7Bdocument%7D%0A%5C%5B%0A+%5Cleft.%5Cbegin%7Baligned%7D%0A++++++++dF+%26%3D+0%2C%5C%5C%0A++++++++d%5E%7B%5Cdagger%7D+F+%26%3D+0%2C%0A+++++++%5Cend%7Baligned%7D%0A%5C+%5Cright%5C%7D%0A+%5Cqquad+%5Ctext%7BMaxwell%27s+equations%7D%0A%5C%5D%0A%5Cend%7Bdocument%7D)

이 예시는 다음 식을 조판합니다:

$$\left.\begin{aligned} dF &= 0,\d^{\dagger} F &= 0,\end{aligned}\ \right}\qquad \text{Maxwell's equations}$$


---

# 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/06-extra-right.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.
