有许多人物的面板!

有许多人物的面板!

我希望得到您的帮助,按照以下示例组装一个面板:在此处输入图片描述

答案1

像这样:

在此处输入图片描述

由于您没有提供任何有关“面板”的信息,我假设这beamer是文档类。但是,解决方案可以相对容易地应用于任何文档类:

\begin{frame}[fragile]
    \begin{figure}
\renewcommand{\tabularxcolumn}[1]{m{#1}}
\setlength\tabcolsep{3pt}

\begin{tabularx}{\textwidth}{XXX}
\multirow{2}*[-1.5ex]{\includegraphics[width=\linewidth]{example-image}}
    &   \includegraphics[width=\linewidth]{example-image}
        &   \includegraphics[width=\linewidth]{example-image}    \\
    &   \includegraphics[width=\linewidth]{example-image}
        &   \includegraphics[width=\linewidth]{example-image}    \\
\end{tabularx}
\caption{my important caption \dots}
    \end{figure}
\end{frame}

在序言中你需要加载以下包:

\usepackage{graphicx}
\usepackage{multirow,tabularx}

相关内容