> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-pro.ayaka.space/latex/ja/to-2/25-how-do-i-change-column-or-row-separation-in-latex-tables.md).

# LaTeX表で列間隔や行間隔を変更するにはどうすればよいですか?

1つの方法は、以下のコマンドを使用することです `\setlength` と `\arraystretch` それぞれ、水平間隔（列の間隔）と垂直間隔（行の間隔）を変更できます。たとえば次のようにします：

```latex
\setlength{\tabcolsep}{20pt}
\renewcommand{\arraystretch}{1.5}
```

次の例は、Overleafで直接開くことができ、 `\setlength` と `\arraystretch` 間隔。

```latex
\documentclass{article}
\begin{document}

\section*{Table with default spacing}

% A table with default row and column spacing
\begin{tabular}{ l c c }
First Row & 6 & 5 \\
Second Row & 4 & 10\\
Third Row & 20 & 30\\
Fourth Row & 100 & 30\\
\end{tabular}

\section*{Table with adjusted spacing}

% A table with adjusted row and column spacing.

% \setlength sets the horizontal (column) spacing
% \arraystretch sets the vertical (row) spacing

\begingroup

\setlength{\tabcolsep}{10pt} % Default value: 6pt
\renewcommand{\arraystretch}{1.5} % Default value: 1
\begin{tabular}{ l c c }
First Row & 6 & 5 \\
Second Row & 4 & 10\\
Third Row & 20 & 30\\
Fourth Row & 100 & 30\\
\end{tabular}

\endgroup
% The \begingroup ... \endgroup pair ensures values of spacing
% parameters only affect this particular table, and not any
% subsequent ones in the document.
\end{document}
```

[この例を Overleaf で開く](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=LaTeX+Table+spacing+example\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cbegin%7Bdocument%7D%0A%0A%5Csection%2A%7BTable+with+default+spacing%7D%0A%0A%25+A+table+with+default+row+and+column+spacing%0A%5Cbegin%7Btabular%7D%7B+l+c+c+%7D%0AFirst+Row+%26+6+%26+5+%5C%5C%0ASecond+Row+%26+4+%26+10%5C%5C%0AThird+Row+%26+20+%26+30%5C%5C%0AFourth+Row+%26+100+%26+30%5C%5C%0A%5Cend%7Btabular%7D%0A%0A%5Csection%2A%7BTable+with+adjusted+spacing%7D%0A%0A%25+A+table+with+adjusted+row+and+column+spacing.%0A%0A%25+%5Csetlength+sets+the+horizontal+%28column%29+spacing%0A%25+%5Carraystretch+sets+the+vertical+%28row%29+spacing%0A%0A%5Cbegingroup%0A%0A%5Csetlength%7B%5Ctabcolsep%7D%7B10pt%7D+%25+Default+value%3A+6pt%0A%5Crenewcommand%7B%5Carraystretch%7D%7B1.5%7D+%25+Default+value%3A+1%0A%5Cbegin%7Btabular%7D%7B+l+c+c+%7D%0AFirst+Row+%26+6+%26+5+%5C%5C%0ASecond+Row+%26+4+%26+10%5C%5C%0AThird+Row+%26+20+%26+30%5C%5C%0AFourth+Row+%26+100+%26+30%5C%5C%0A%5Cend%7Btabular%7D%0A%0A%5Cendgroup%0A%25+The+%5Cbegingroup+...+%5Cendgroup+pair+ensures+values+of+spacing+%0A%25+parameters+only+affect+this+particular+table%2C+and+not+any%0A%25+subsequent+ones+in+the+document.%0A%5Cend%7Bdocument%7D)

この例では次の出力が生成されます:

![LaTeXで表の間隔を変更する例](/files/b31b32ea587a365a0605be4c7503e4b65e234784)


---

# 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://ayakaleaf-pro.ayaka.space/latex/ja/to-2/25-how-do-i-change-column-or-row-separation-in-latex-tables.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.
