這就是我到目前為止所做的。我在這裡使用了小型頁面,但之前我嘗試過列,結果完全相同。我究竟做錯了什麼?
\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
套件。