投影仪幻灯片中并排显示两个 pdf 独立图片

投影仪幻灯片中并排显示两个 pdf 独立图片

这是我目前所做的。我在这里使用了 minipage,但之前我尝试过 columns,结果完全相同。我做错了什么?

\begin{frame}{Pratice Questions}
\begin{minipage}{0.5 \textwidth}
    \includestandalone[width=.5\textwidth,]{prop2}
    \end{minipage}
\begin{minipage}{0.5 \textwidth}
\includestandalone[width=.5\textwidth,]{prop1}
\end{minipage}
    \end{frame}

在此处输入图片描述

\begin{frame}{Practice Questions}
%\vspace{1.5cm}
\begin{figure}
    \centering
\begin{minipage}{0.48 \textwidth}
    \centering
    \includestandalone[width=\linewidth,]{prop2}
    \caption{hmmmmm}
\end{minipage}
    \begin{minipage}{0.48 \textwidth}
    \centering
    \includestandalone[width=\linewidth,]{prop1}
    \caption{hmmmm1}
\end{minipage}
\end{figure}
\end{frame}

在此处输入图片描述

答案1

\end{minipage}您不应该在和之间留下换行符,因此请尝试在之后立即\begin{minipage}添加。%\end{minipage}

无论如何,我建议使用columns,如下所示:

\begin{columns}
\column{0.5\linewidth}
  \includegraphics[width=\linewidth]{prop2}

\column{0.5\linewidth}
  \includegraphics[width=\linewidth]{prop1}
\end{columns}

在注释之后,如果您想添加标题,您可以\captionof{figure}{Your caption.}在图形包含后立即使用该命令。您需要加载caption包。

相关内容