我下载了课堂上制作的 PDF 文件beamer
,发现了以下幻灯片:
我想知道使用什么命令/环境/包来创建堆叠的圆形框。我搜索了beamer
手册,但找到了beamerboxesrounded
环境,这似乎不是我想要的。
答案1
以下内容基于tcolorbox
并可tikz
作为起点:
\documentclass{beamer}
\usepackage{tcolorbox}
\usepackage{tikz}
\begin{document}
\begin{frame}
\frametitle{nested tcolorboxes}
\begin{tcolorbox}[width=6cm]
some contents in the larger surrounding box
\begin{tcolorbox}[hbox]
smaller box
\end{tcolorbox}
\end{tcolorbox}
\end{frame}
\begin{frame}
\frametitle{overlapping tcolorboxes}
\begin{tikzpicture}
\node (lowest)
{\begin{tcolorbox}[width=4cm]
some contents in the lowest box
\end{tcolorbox}};
\node[anchor=north west] (middle) at (lowest.east) [xshift=-1cm]
{\begin{tcolorbox}[width=3cm]
some contents in the middle box
\end{tcolorbox}};
\node (upper) at (middle.south west) [yshift=-0.1cm]
{\begin{tcolorbox}[width=8cm]
some contents in the upper box
\end{tcolorbox}};
\end{tikzpicture}
\end{frame}
\end{document}