我一直试图按照附件中的示例排列我的 Beamer 演示文稿中的图形,但没有成功,有人能给我举个例子吗?我喜欢它的排列方式和边距间距,提前感谢任何提示,
答案1
也许您可以借助columns
环境的帮助来组织它们。
\documentclass{beamer}
\usepackage{mwe}
\begin{document}
\begin{frame}{Organizing figures}
\begin{columns}[onlytextwidth]
\column[T]{.7\textwidth}
\includegraphics[width=\linewidth]{example-image-a}
\column[T]{.3\textwidth}
\includegraphics[width=\linewidth]{example-image-b}\\
\includegraphics[width=\linewidth]{example-image-c}
\end{columns}
Some caption
\end{frame}
\end{document}