我试图在 beamer 中设计一个框架,如下所示:
tikzfill
以多边形圆、椭圆等为中心呈现的图形。- 并在图形左右两侧添加一些文字来填充空白区域。
因为我不知道该怎么做,所以提供这个想法的模式,我试图用文本替换蓝色笔画:
\documentclass{beamer}
\usepackage{tikzfill, lipsum}
\begin{document}
\begin{frame}{Frame Title}
\textbf{Upper Portion}
\begin{center}
\begin{tikzpicture}
\path[fill stretch image=example-image-duck] (0,0) ellipse (30mm and 20mm);
\end{tikzpicture}
\end{center}
\textbf{Lower Portion}
A few sentences can be appended at last. This portion is auxiliary though.
\end{frame}
\end{document}