即使我很熟悉 LaTeX,但我仍认为自己对 LaTeX 演示文稿还很陌生。
- 我已经创建了图形/图表。
- 我想要将云和箭头叠加在图表上。
- 覆盖应位于第二帧中。
这是我为课堂上的一个框架编写的代码beamer
。我真正想要的是一张像我上传的图片一样的图片。在云中我还需要一些文本。而且线条应该是箭头。这在 LaTeX 中可以实现吗beamer
?
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\begin{frame}[label=Figs 5Ia-g.]
\frametitle{\textbf{\textit{continued....}}}
\begin{center}
\begin{overprint}%
\only<1>{\includegraphics[scale=0.30]{Fig5Ia.jpg}}%
\only<2>{\includegraphics[scale=0.30]{Fig5Ib.jpg}}%
\caption{\only<1>{\\ \footnotesize{\textcolor{Maroon0}{\textbf{The emission of cluster $^{14}$C from Fr, Ra, Ac and Th isotopes.}}}}\only<2>{\\ \footnotesize{\textcolor{Maroon0}{\textbf{The emission of cluster $^{20}$O from Ra and Th and clusters $^{18,22}$O from Th isotopes.}}}}}
\end{overprint}
\end{center}
\end{frame}
\end{document}
或者我是否可以像在 PPT 中一样将这两个图合并到一张幻灯片中。一个接一个,或者更明确地说,图像 1 应该放在前面,图像 2 应该在后面(可能作为背景)
答案1
为了在这里获得帮助,希望您至少提供一些
minimal
可编译的代码。
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
% ------------ Frame Start ------------
\begin{frame}[c]
\frametitle{Frame Title}
\begin{center}
\includegraphics[width=0.8\textwidth]{example-image-a}
\end{center}
\pause
\begin{tikzpicture}[overlay, remember picture]
\node at (current page.north east)
[
anchor=north east,
xshift=0mm,
yshift=0mm
]
{
\includegraphics[width=0.3\textwidth]{example-image-b}
};
\end{tikzpicture}
\end{frame}
% ------------ Frame End ------------
\end{document}
编译两次!
您可能还\pause
可以使用其他命令,例如\only
和\uncover
。请阅读beamer
手册以获取更多信息。
答案2
\documentclass{beamer}
\usepackage{overpic}
\setbeamerfont{frametitle}{series=\bfseries}
\setbeamerfont{caption}{size=\footnotesize, series=\bfseries}
\setbeamercolor{caption}{fg=brown}
\begin{document}
\begin{frame}
\frametitle{continued....}
\begin{figure}
\begin{overpic}[width=\textwidth]{rexK7}
\put(37,15){\includegraphics<2>[width=.67\textwidth]{J9rPO}}
\end{overpic}
\caption{The emission of cluster $^{14}$C from Fr, Ra, Ac and Th isotopes.}
\end{figure}
\end{frame}
\end{document}