Latex 表格多行或者多列

Latex 表格多行或者多列

表格的一列需要使用多行:
方案1:
usepackage{multirow}
搜索一下multirow的用法

方案2:
\begin{tabular}{|p{宽度}|p{宽度}|}
...
\end{tabular}

方案3:
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}%放在导言区
%然后使用&\tabincell{c}{}&就可以在表格中自动换行
%比如这么用
\begin{tabular}{|c|c|}
\hline
1 & the first line \\
\hline
2 & \tabincell{c}{haha\\ heihei\\zeze} \\
\hline
\end{tabular}

多列:
\multicolumn

你可能感兴趣的:(Latex 表格多行或者多列)