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

# 我該如何在 LaTeX 中用定位鍵（tab）縮排段落？

LaTeX 會自動縮排每個不直接接在章節標題後面的段落的第一行。若您想取消縮排，可以使用 `\noindent` 命令：

```latex
\section{簡介}
這是第一個段落。

\noindent 這是第二個段落。
```

如果您想縮排章節標題後的第一個段落，可以加入 [`indentfirst` 套件](https://ctan.org/pkg/indentfirst?lang=en) 到您的導言區中：

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

段落第一行縮排的幅度由一個名為 `\parindent`的參數指令控制。如需更多資訊和範例，請參閱 [Overleaf 關於段落間距的文章](/latex/zh-tw/ge-shi-hua/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/zh-tw/ge-shi-hua/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/zh-tw/wen-yu-da/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.
