我希望提高我对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}
最后我上面的代码生成了下面的图片:
我希望这能够像手册中的其他一些示例一样“开箱即用”,所以不知道我做错了什么或者我错过了什么。