单个表条目中的多个图像

单个表条目中的多个图像

我正在尝试在投影仪幻灯片中生成一行图像。左侧是一张较大的图像,右侧是 2x2 表格中的 4 张较小的图像。以下是我尝试过的方法

\begin{tabular}{c @{\hspace{2em}} c}
 \includegraphics[width=.4\linewidth]{largeImage} &

 \begin{tabular}{c @{\hspace{.5em}} c}
  \includegraphics[width=.2\linewidth]{smallImage1} & 
  \includegraphics[width=.2\linewidth]{smallImage2} \\
  \includegraphics[width=.2\linewidth]{smallImage3} &
  \includegraphics[width=.2\linewidth]{smallImage4}
 \end{tabular} 
\end{tabular}

这足以编译,没有任何问题,但 2x2 图像集移到了幻灯片的底部,并且没有与较大的图像对齐。我该怎么办?

答案1

也许只是使用 beamercolumns环境而不是表格?

\documentclass{beamer}

\begin{document}
\begin{frame}
    \begin{columns}[T]
        \begin{column}{.4\textwidth}
            \includegraphics[width=\textwidth]{example-image}
        \end{column}
        \begin{column}{.4\textwidth}
            \includegraphics[width=.48\textwidth]{example-image}%
            \includegraphics[width=.48\textwidth]{example-image}

            \includegraphics[width=.48\textwidth]{example-image}%
            \includegraphics[width=.48\textwidth]{example-image}
        \end{column}        
    \end{columns}
\end{frame}
\end{document}

在此处输入图片描述

答案2

两个并排的表格而不是两个嵌套的表格就可以满足您的要求。

\documentclass{beamer}
\usepackage{lmodern}
\begin{document}

\begin{frame}    
  \begin{tabular}{c}
    \includegraphics[width=.42\linewidth]{example-image} 
  \end{tabular}    
  \begin{tabular}{c @{\hspace{.5em}} c}
    \includegraphics[width=.2\linewidth]{example-image} & 
    \includegraphics[width=.2\linewidth]{example-image} \\
    \includegraphics[width=.2\linewidth]{example-image} &
    \includegraphics[width=.2\linewidth]{example-image}
  \end{tabular}        
\end{frame}

\end{document}

在此处输入图片描述

相关内容