tcolorbox 中的 pgfkeys 错误

tcolorbox 中的 pgfkeys 错误

我正在尝试复制tcolorbox第 13 页包文档中给出的示例代码的一部分。它看起来像这样:

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\tcbset{colback=red!5!white,colframe=red!75!black,fonttitle=\bfseries,nobeforeafter,width=(\linewidth-4mm)/2}
\begin{document}
\begin{tcolorbox}[sidebyside,title=Lower not separated,lower separated=false]
This is the upper part.
\tcblower
This is the lower part.
\end{tcolorbox}
\end{document}

在此处输入图片描述

除了不应该出现的虚线垂直线外,一切看起来都很好。上面的代码生成错误:

pgfkeys:Ido not know the key /tcb/lower separated...

日志文件将我引导至pgfkeys包。pgfmanual 中有关密钥管理的第 55 节(第 481 页)没有为我提供答案。那么这里出了什么问题?也许只是缺少了一些东西,如本例所示:“包 pgfkeys 错误”问题

以及如何赋予每个部分不同的颜色?

相关内容