将框架拆分为 itemize 和 figure

将框架拆分为 itemize 和 figure

我正在制作演示文稿,想在框架的右上角放置一个小图形。框架的其余部分应逐项列出。因此它应该看起来像发布的图像一样。

我发现了一些有关 minipages 的内容,但它似乎将框架分成了多列?

谢谢!

在此处输入图片描述

编辑:这是我使用 minipage 的尝试。

\begin{document}
    \begin{frame}{Test}
        \begin{minipage}[t]{0.48\linewidth}
            \begin{itemize}
                \item I want to itemize stuff! 
                \item I want to itemize stuff! Sometimes the \\ text might be 
                    longer. So I hope its go-\\ing to be formated correctly. Would be \\ kinda cool. 
                \item I want to itemize stuff! And this long text should be placed under the picture.
                \item I want to itemize stuff!
                \begin{itemize}
                    \item this is a test! I hope at the end of the day my problem will be solved somehow. 
                \end{itemize}

            \end{itemize}
        \end{minipage}
        \begin{minipage}[t]{0.48\linewidth}
            \includegraphics[width=\textwidth]{img/Ei.jpg}
        \end{minipage}
    \end{frame}
\end{document}

答案1

您可以尝试将其分成三个小页面并分别写下各个项目。

将框架分为两页,“顶页”和“底页”:顶页又分为两页,即左页和右页

这不是一个好方法,但我认为它可以起作用

相关内容