我在将三张图片插入一张幻灯片时遇到问题有一个类似的问题如何在投影仪的一张幻灯片中放置 3 个图形? 然而,这是当人们想在那里放置文本的时候。
我需要插入三张图片,一张在上面,两张在下面,并附有标题
我试过
\documentclass{beamer}
\begin{document}
\begin{frame}
\centering
\caption {example1}
\includegraphics[width=5cm, height=4cm]{example-image-a}
\vspace{0.01em}
\caption {example2}
\includegraphics[width=5cm, height=4cm]{example-image-b}
\caption {example3}
\includegraphics[width=5cm, height=4cm]{example-image-c}
\end{frame}
\end{document}
还有其他方法吗?
答案1
所以有什么问题?
\documentclass{beamer}
\begin{document}
\begin{frame}
\hfil\hfil\includegraphics[width=5cm]{example-image-a}\newline
\null\hfil\hfil\makebox[5cm]{example1}\newline
\vfil
\hfil\hfil\includegraphics[width=5cm]{example-image-b}\hfil\hfil
\includegraphics[width=5cm]{example-image-c}\newline
\null\hfil\hfil\makebox[5cm]{example2}
\hfil\hfil\makebox[5cm]{example3}
\end{frame}
\end{document}
答案2
\documentclass{beamer}
\begin{document}
\begin{frame}
\centering
\begin{tabular}{c}
example1\\
\includegraphics[width=3cm]{example-image-a}
\end{tabular}
\vspace{0.01em}
\begin{tabular}{cc}
example2 & example3 \\
\includegraphics[width=3cm]{example-image-b}
&
\includegraphics[width=3cm]{example-image-c}
\end{tabular}
\end{frame}
\end{document}
附注:最好只使用width
或 ,height
这样\includegraphics
图片才不会失真。如果同时使用,keepaspectratio
也请使用。
答案3
你可以将其中一个放在顶部居中。下面你可以将两个图形放在迷你页面中。代码看起来应该像这样:
\documentclass{beamer}
\begin{document}
\frame{
\centering
\begin{figure}
\caption{example1}
\includegraphics[width=5cm, height=3cm]{pic1}
\end{figure}
\vspace{0.01em}
\begin{minipage}{0.4\textwidth}
\begin{figure}
\caption{example2}
\includegraphics[width=3cm, height=3cm]{pic2}
\end{figure}
\end{minipage}
%
\hfill % fill the gap between the graphics
%
\begin{minipage}{0.4\textwidth}
\begin{figure}
\caption{example3}
\includegraphics[width=3cm, height=3cm]{pic3}
\end{figure}
\end{minipage}
}
\end{document}
这个可以运行。下次请发布一个运行示例...顺便说一下,这个页面可能有用http://www2.informatik.uni-freiburg.de/~frank/ENG/latex-course/latex-course-3/latex-course-3_en.html
答案4
替代方法:
\documentclass{beamer}
\begin{document}
\begin{frame}{Three images in one slide}
\begin{figure}
\includegraphics[width=0.4\textwidth]{example-image-a}
\vspace*{-0.3cm} % remove spacing between figure and caption
\caption{Example A}
\end{figure}
\vspace*{-1cm}
\begin{columns}[T]
\begin{column}{0.5\textwidth}
\begin{figure}
\includegraphics[width=.8\textwidth]{example-image-b}
\vspace*{-0.3cm}
\caption{Example B}
\end{figure}
\end{column}
\begin{column}{0.5\textwidth}
\begin{figure}
\includegraphics[width=.8\textwidth]{example-image-c}
\vspace*{-0.3cm}
\caption{Example C}
\end{figure}
\end{column}
\end{columns}
\end{frame}
\end{document}