获取 tcolorbox 选项的值

获取 tcolorbox 选项的值

我尝试从tcolorbox的选项中获取值(如下例所示),但失败了。我遗漏了什么吗?

\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{tcolorbox}[width=0.5\textwidth]
  \pgfkeysvalueof{/tcb/width}%This typeset nothing.
  \rule{0.5*\pgfkeysvalueof{/tcb/width}}{5pt} %This causes error.
\end{tcolorbox}
\end{document}

相关内容