如何在投影仪中制作框架块

如何在投影仪中制作框架块

我想在每一帧中创建一个这样的块

在此处输入图片描述

因为我不喜欢使用这样的经典积木 在此处输入图片描述 您能给我提供必要的代码吗?谢谢

答案1

您可以制作一个带有类似tcolorbox包装的盒子。

\documentclass{beamer}
\usetheme{Madrid}
\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter]{pabox}[1]{%
    colback=white,
    colframe=structure.fg,
    colbacktitle=white!90!structure.fg,
    coltitle=black,
    fonttitle=\bfseries, 
    title=Definition~\thetcbcounter .,
    enhanced,
    attach boxed title to top left={yshift=-2mm, xshift=0.5cm}
}

\begin{document}

\begin{frame}
\begin{pabox}
This is my own box with a mandatory
numbered title and options.
\end{pabox}
\end{frame}


\end{document}

在此处输入图片描述

相关内容