我想创建可以随意指定宽度、高度和位置的框。为此,我使用了tcolorbox
论坛上建议的命令。
但我想指定框架的颜色tcolorbox
以匹配我使用的主题的默认蓝色Frankfurt
。我该怎么做?
答案1
你是这个意思?
\documentclass{beamer}
\usetheme{frankfurt}
\usepackage{tcolorbox}
\begin{document}
\begin{frame}
\begin{tcolorbox}[colframe=structure]
Some
\end{tcolorbox}
\end{frame}
\end{document}