bottomrule 选项在 beamer tcolorbox 中不起作用

bottomrule 选项在 beamer tcolorbox 中不起作用

我想对 tcolorbox 环境使用 bottomrule 选项,如第 12 页的 tcolorbox 手册中所示。

不幸的是,该选项似乎不起作用,下面的代码创建了一个标准的 tcolorbox,而不是一个底部有规则的 tcolorbox。

\documentclass{beamer}
\usepackage{tikz}
\usepackage{tcolorbox}

\title{\color{white}{\textbf{Introduction}}}
\begin{document}
\begin{frame}
\begin{tcolorbox}[bottomrule=3mm]
This should be a bottomruled \textbf{tcolorbox}.
\end{tcolorbox}
\end{frame}
\end{document}

该选项应将底部边界高度设置为 3mm,而不是标准值(0.5mm),但它似乎什么也不做。类似选项如toprulerightrule不起作用leftrule,而boxrule(设置所有边界的高度)起作用。

在此处输入图片描述

知道可能是什么问题吗?


更新到最新版本后,tcolorbox输出符合预期

在此处输入图片描述

相关内容