latex缩小表格间距
时间: 2023-09-26 08:05:47 浏览: 337
LaTeX表格排版简明教程
要缩小 LaTeX 中表格的间距,可以使用 `\setlength{\tabcolsep}{value}` 命令来调整列间距,以及 `\renewcommand{\arraystretch}{value}` 命令来调整行间距。
下面是一个示例,展示如何缩小表格的间距:
```latex
\documentclass{article}
\begin{document}
% 设置列间距为 4pt
\setlength{\tabcolsep}{4pt}
% 设置行间距为默认值的 0.8 倍
\renewcommand{\arraystretch}{0.8}
\begin{tabular}{|c|c|}
\hline
Cell 1 & Cell 2 \\
\hline
Cell 3 & Cell 4 \\
\hline
\end{tabular}
\end{document}
```
在上面的示例中,我们将列间距设置为 4pt,行间距设置为默认值的 0.8 倍。你可以根据需要自由调整这两个值。
阅读全文