用文字填充左右两侧,保持图形居中

用文字填充左右两侧,保持图形居中

我试图在 beamer 中设计一个框架,如下所示:

  1. tikzfill以多边形圆、椭圆等为中心呈现的图形。
  2. 并在图形左右两侧添加一些文字来填充空白区域。

因为我不知道该怎么做,所以提供这个想法的模式,我试图用文本替换蓝色笔画:

在此处输入图片描述

\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}

相关内容