LaTeX-Beamer:如何在其中一列中有两列和中心图片

LaTeX-Beamer:如何在其中一列中有两列和中心图片

感谢这个救命的论坛,我能够在 LaTeX-Beamer 中创建一个几乎符合我想要的幻灯片:

\documentclass{beamer}
\usetheme{Hannover}
\begin{document}
    \begin{frame}{MyTitle}
            \begin{columns}[T]
                \begin{column}{.5\textwidth}
                    \begin{block}{}
                        \begin{itemize}
                            \item Item1
                            \item Item2
                            \item Item3
                        \end{itemize}
                    \end{block}
                \end{column}
                \begin{column}{.5\textwidth}
                        \begin{block}{}
                            \includegraphics[width=0.6\textwidth {imgs/Image1.jpg}
                            \includegraphics[width=0.6\textwidth]{imgs/Image2.jpg}
                        \end{block}
                \end{column}
            \end{columns}
    \end{frame}
\end{document}

现在,我想让右列中的两张图片居中。它们是左对齐的。此外,我希望它们之间有一点垂直空间。我试过了addvspace{2pt}vspace*{2pt}但这些似乎都不起作用。

答案1

Beamer 使用 TeX 的常规规则来定位文本和图形。因此,例如,您可以center为图像使用环境。至于垂直空间,请确保首先以空白行结束段落(请参阅这个答案了解详情)。

\documentclass{beamer}
\usepackage{graphicx}
\usetheme{Hannover}
\begin{document}
    \begin{frame}{MyTitle}
            \begin{columns}[T]
                \begin{column}{.5\textwidth}
                    \begin{block}{}
                        \begin{itemize}
                            \item Item1
                            \item Item2
                            \item Item3
                        \end{itemize}
                    \end{block}
                \end{column}
                \begin{column}{.5\textwidth}
                        \begin{block}{}
                        \begin{center}
                            \includegraphics[width=0.5\textwidth]{example-image-a}

                            \vspace{1cm}
                            \includegraphics[width=0.5\textwidth]{example-image-b}
                        \end{center}
                        \end{block}
                \end{column}
            \end{columns}
    \end{frame}
\end{document}

输出:

输出

相关内容