我需要将框架分成两列,左列需要放置两张或三张图片,一张在另一张之上,右列放置文字。我该怎么做?
答案1
您可以使用以下columns
环境:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}{.45\textwidth}
\includegraphics[width=\textwidth]{example-image-a}
\includegraphics[width=\textwidth]{example-image-b}
\end{column}
\begin{column}{.45\textwidth}
text
\end{column}
\end{columns}
\end{frame}
\end{document}