I was trying to design a frame in beamer as follows:
- A graphics at center rendered by
tikzfillwithin a polygon circle, ellipse etc. - And some text on left and right of the graphics to fill the blank area.
As I am unaware how to do it, providing a schema of the Idea, I am trying to replace the blue strockes by text:
\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}
