为什么第 345 页上的 tcolorbox 示例不起作用

为什么第 345 页上的 tcolorbox 示例不起作用

我希望提高我对tcolorbox.. 的(非常基础的)知识,所以我尝试编译第 345 页(第 18 章:库“钩子”)中的示例。编译它时我收到警告:

\RequiredPackage{minted}{2011/09/17]

我已经通过 MikTeX 包管理器安装了它,然后在强制编译后要求

\minted@appathifexist=

ETC

我使用最新的 64 位 MikTeX,具有管理权限,并使用 WinEdt 作为编辑器。示例代码如下:

\documentclass{article}
\usepackage[all]{tcolorbox}
    \usepackage{array,tabularx}%,longtable,tabu

    \begin{document}
    \newcolumntype{Y}{>{\raggedleft\arraybackslash}X}% see tabularx
\tcbset{enhanced,fonttitle=\bfseries\large,
        fontupper=\normalsize\sffamily,
        colback=yellow!10!white,colframe=red!50!black,
        colbacktitle=orange!30!white,%=Salmon!30!white
        coltitle=black,center title,
    tabularx={X||Y|Y|Y|Y||Y},% this sets ’before upper’ and ’after upper’
        before upper app={Group & One & Two & Three & Four & Sum\\
                          \hline\hline} }
\begin{tcolorbox}[title=My table]
Red & 1000.00 & 2000.00 & 3000.00 & 4000.00 & 10000.00\\\hline
Green & 2000.00 & 3000.00 & 4000.00 & 5000.00 & 14000.00\\\hline
Blue & 3000.00 & 4000.00 & 5000.00 & 6000.00 & 18000.00\\\hline\hline
Sum & 6000.00 & 9000.00 & 12000.00 & 15000.00 & 42000.00
\end{tcolorbox}
    \end{document}

最后我上面的代码生成了下面的图片:

在此处输入图片描述

我希望这能够像手册中的其他一些示例一样“开箱即用”,所以不知道我做错了什么或者我错过了什么。

答案1

如果我不加载,我会得到与您相同的输出colortbl:错误是!

Undefined control sequence.
\tcb@after@box ->\endtabularx \arrayrulecolor 
                                              {black}
l.20 \end{tcolorbox}

并且\arrayrulecolor是的命令colortbl

如果我将其添加colortbl到包列表中(或者,按照 Gonzalo Medina 的建议,将其添加table到选项中\documentclass),则输出为

在此处输入图片描述

没有任何错误。

相关内容