我想使用最近推出的(版本 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=red
tcolorbox 选项,则会打印出“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}