Beamer スライドに 2 つの PDF スタンドアロン画像を並べて表示

Beamer スライドに 2 つの PDF スタンドアロン画像を並べて表示

これまで私がやってきたことはこれです。ここでは minipage を使用しましたが、その前に列を試したところ、結果はまったく同じでした。何が間違っているのでしょうか?

\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パッケージをロードする必要があります。

関連情報