看看这些问题和它们的答案:
他们提出了类似的问题,也给出了类似的可接受答案。然而,答案并非问题的确切解决方案。
我找到他们是因为我提出了同样的问题:如何真正分裂细胞?
请注意,这不是重复的,因为我专注于拆分操作而不是合并大多数单元格。事实上,举例来说,合并操作是那些使用 Excell 等软件的人的解决方案,而拆分操作是那些使用 Word 等软件中的表格的人的常用操作。
答案1
您可以使用嵌套表格来水平和/或垂直拆分单元格:
\documentclass{article}
\begin{document}
Split cells horizontally:
\begin{tabular}{|l|l|}
\hline
some text & some more text \\
\hline
non split cell & \begin{tabular}{@{}ll@{}}
split cell A & split cell B \\
\end{tabular} \\
\hline
\end{tabular}
\bigskip
Split cells vertically:
\begin{tabular}{|l|l|}
\hline
some text & some more text \\
\hline
non split cell & \begin{tabular}{@{}l@{}}
split cell A\\
split cell B\\
\end{tabular} \\
\hline
\end{tabular}
\bigskip
Split cells horizontally and vertically:
\begin{tabular}{|l|l|}
\hline
some text & some more text \\
\hline
non split cell & \begin{tabular}{@{}ll@{}}
split cell A & split cell B\\
split cell C & split cell D\\
\end{tabular} \\
\hline
\end{tabular}
\end{document}