> 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/36-how-do-i-tab-indent-a-paragraph-in-latex.md).

# LaTeX에서 문단을 탭(들여쓰기)하려면 어떻게 하나요?

LaTeX는 절 제목 바로 뒤에 오지 않는 각 문단의 첫 줄을 자동으로 들여쓰기합니다. 들여쓰기를 없애고 싶다면 `\noindent` 명령:

```latex
\section{Introduction}
이것이 첫 번째 문단입니다.

\noindent 이것이 두 번째 문단입니다.
```

절 제목 뒤의 첫 번째 문단도 들여쓰기하고 싶다면 [`indentfirst` 패키지](https://ctan.org/pkg/indentfirst?lang=en) 를 포함할 수 있습니다.

```latex
\usepackage{indentfirst}
```

문단의 첫 줄이 들여쓰기되는 양은 다음과 같은 매개변수 명령으로 제어됩니다. `\parindent`. 자세한 정보와 예시는 [문단 간격에 관한 Overleaf 문서](/latex/ko/formatting/04-articles-how-to-change-paragraph-spacing-in-latex.md#5cparindent-28tex-primitive29).

전체 문단을 들여쓰기하고 싶다면, 다양한 기법이 [TeX StackExchange 포럼의 이 게시물에 설명되어 있습니다.](http://tex.stackexchange.com/questions/35933/indenting-a-whole-paragraph) 및 [이 Overleaf 도움말 문서](/latex/ko/formatting/04-articles-how-to-change-paragraph-spacing-in-latex.md#5cleftskip-and-5crightskip-28tex-primitives29)


---

# 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/36-how-do-i-tab-indent-a-paragraph-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.
