tcolorbox 中的 tabularx 选项

tcolorbox 中的 tabularx 选项

我想使用最近推出的(版本 2.10)tabularx键用于tcolorbox包。密钥记录在tcolorbox 文档,第 3.6 节,/tcb/tabularx第 28 页。我有该软件包的最新版本(2.20)。

我似乎无法重现那里给出的例子,也无法重现像这样的简化的例子:

\documentclass{article}
\usepackage{array,tabularx}
\usepackage{tcolorbox}
\begin{document}

\begin{tcolorbox}[tabularx={X|X},title=table]
cell A & Cell B\\\hline
cell C & Cell D
\end{tcolorbox}

\end{document}

我得到的是undefined control sequence错误\begin{tcolorbox}[tabularx={X|X},title=table]和以下输出: 在此处输入图片描述

左侧打印的颜色名称是colframe选项的默认值,即,如果您添加colframe=redtcolorbox 选项,则会打印出“red”字样。我是不是遇到了错误,还是我遗漏了什么?

答案1

似乎依赖于colortbl

在此处输入图片描述

\documentclass{article}
\usepackage{array,tabularx,colortbl}
\usepackage{tcolorbox}
\begin{document}

\begin{tcolorbox}[tabularx={X|X},title=table]
cell A & Cell B\\\hline
cell C & Cell D
\end{tcolorbox}

\end{document}

相关内容