如何在 Beamer 中添加边距注释?

如何在 Beamer 中添加边距注释?

\includegraphics[scale=]{} 我使用 Beamer 进行演示,我想知道如何使用和在插入的图形的两侧添加一些文本\caption{}

答案1

您可以使用该columns环境。

在此处输入图片描述

\documentclass{beamer}
\begin{document}
\begin{frame}
  \frametitle{Image with comments}
  \begin{columns}
    \column{.2\textwidth}
    Left comment

    \column{.5\textwidth}
    \begin{figure}
      \includegraphics[width=\linewidth]{example-image}
      \caption{Example image}
    \end{figure}

    \column{.2\textwidth}
    Right comment
  \end{columns}
\end{frame}
\end{document}

相关内容