我正在尝试将两幅图像并排放在同一个投影仪中。我正在尝试不同的解决方案,我专注于这个答案如何将两幅图像并排对齐并自动缩放以使用整个幻灯片?由@Martin Thoma 提供。
我正在做以下事情
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}{Comparison}
\begin{figure}[ht]
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[width=1.65\textwidth]{example-image-a.png}
\label{fig:a}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[width=1.55\textwidth]{example-image-b.png}
\label{fig:b}
\end{minipage}
\end{figure}
\end{frame}
\end{document}
但是图片仍然不太好看(有点小),而且它们在投影机的右侧。我想稍微增加图片的尺寸。首先,将它们向左移动一点(也许向上移动一点),然后增加尺寸。可以做到吗?
答案1
你不需要加载graphicx
(beamer
已经加载了),也不需要figure
或minipage
\documentclass{beamer}
\begin{document}
\begin{frame}{Comparison}
\includegraphics[width=.47\textwidth]{example-image-a.png}%
\hfill
\includegraphics[width=.47\textwidth]{example-image-b.png}%
\end{frame}
\end{document}
如果您希望图像大于 .5\textwidth,则需要将图像留白到边距
\documentclass{beamer}
\begin{document}
\begin{frame}{Comparison}
\hspace*{-.75cm}%
\includegraphics[width=.53\textwidth]{example-image-a.png}%
\hfill
\includegraphics[width=.53\textwidth]{example-image-b.png}%
\hspace*{-.75cm}%
\end{frame}
\end{document}