任意移动方块和图形

任意移动方块和图形

我想在幻灯片的右侧放置一个图形,在左侧放置文本,以便解释该图形。

然后我想在幻灯片的底部放置另一个块。

我正在使用 Beamer。

如何在单张幻灯片中移动块和图形?

答案1

您可以columns按如下方式使用该环境:

\documentclass{beamer}
\usepackage{mwe} %For dummy image


\author{The author}
\title{The title}

\begin{document}
\begin{frame}{Frame title}{Frame subtitle}

\begin{columns}
    \begin{column}{0.3\textwidth}
    The Explanation
    \end{column}
    \begin{column}{0.7\textwidth}\centering
    \includegraphics[width=.6\linewidth]{example-image-a}
    \end{column}
\end{columns}

\vspace{1cm}

\begin{block}{title}
content
\end{block}
\end{frame}

\end{document}

在此处输入图片描述

相关内容