如何在表格单元格中逐项列出列表?

时间:2019-05-18 10:10:18

标签: latex

我正在尝试制作这张桌子:

enter image description here

但是我还没有发现在单元格中包含列表的可能性。

1 个答案:

答案 0 :(得分:0)

您可以在允许换行符的所有列类型中使用逐项列出,例如在固定为p的p列中:

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{tabular}{|l|p{3cm}|}
\hline
abc & \begin{itemize}[left=0pt,topsep=0pt]
\item abc
\item def
\end{itemize}\nointerlineskip\\
\hline
abc & abc\\
\hline
\end{tabular}

\end{document}