逐项列出表格

逐项列出表格

是否可以在 itemize 中包含表格?

\begin{itemize}
\item item 1
\begin{tabu}[X X]
\toprule
150 & 150 \\ bottomrule
\end{tabu}
\item item 2
\end{itemize}

对齐方式应为:

  • 第 1 项


    150 150


  • 第 2 项

答案1

请加完全的带有必要包的示例。

您使用的表格语法错误。列说明符应放在大括号 ( {}) 内,而不是方括号 ( []) 内。要获得所需的对齐方式,只需在 后添加一个空行item

在此处输入图片描述

\documentclass{article}
\usepackage{tabu,booktabs}
\begin{document}
\begin{itemize}
\item item 1

\begin{tabu}{X X}
\toprule
150 & 150 \\ \bottomrule
\end{tabu}
\item item 2
\end{itemize}

\end{document}

答案2

\documentclass{article}
\usepackage{tabularx,booktabs}
\begin{document}
  \begin{itemize}
\item item 1\par
\begin{tabularx}{\linewidth}{X X}
\toprule
150 & 150 \\ \bottomrule
\end{tabularx}
\item item 2
\end{itemize}
\end{document}

在此处输入图片描述

相关内容