我有一个文档,我想让表格的行间距更大。但是,还有一个内部部分,我使用了表格。如下所示:
\begin{table}[!htb]
\centering
\begin{tabular}{c c}
cell 1 & cell 2\\
\begin{tabular} cell 3.1 \\ cell 3.2 \end{tabular} & cell 4\\
\end{tabular}
end{table}
但是,如果我执行类似添加的操作:\def\arraystretch{1.5}
单元格 1,2 和 3,4 之间的距离会增加,但单元格 3.1 和 3.2 之间的距离也会增加。
那么,如何在不改变第 3.1 行和第 3.2 行之间的距离的情况下编辑单元格 1,2 和 3,4 之间的行距离?
答案1
您可以使用该cellspace
包:
\documentclass{article}
\usepackage[column=0]{cellspace}
\setlength\cellspacetoplimit{6pt}
\setlength\cellspacebottomlimit{\cellspacetoplimit}
\begin{document}
\begin{table}
\centering
\begin{tabular}{0c 0c}
cell 1 & cell 2\\
\begin{tabular}{cc} cell 3.1 \\ cell 3.2 \end{tabular} & cell 4\\
\end{tabular}
\end{table}
\end{document}