비머 슬라이드에 나란히 있는 두 개의 PDF 독립형 사진

비머 슬라이드에 나란히 있는 두 개의 PDF 독립형 사진

이것이 제가 지금까지 한 일입니다. 여기서는 미니페이지를 사용했지만 사전에 열을 사용해 보았는데 결과는 정확히 같았습니다. 내가 도대체 ​​뭘 잘못하고있는 겁니까?

\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.

관련 정보