I have a large image on a slide. I want to add 3 small images to this. All are given in jpeg. However, I want to pause the 3 small images that means first of all the audience only sees the background image, then I click and image 1 is added, next image 2 and then the last one. However, I need to have the added images positioned manually. So I want to overlay them, however I have to give the coordinates or somehow get them to the place where I want them to be (I already tried hspace and vspace with this solution and also with \pause, however it does not work).
My mwe example (figures needed):
\documentclass{beamer}
\usetheme{Goettingen}
\usepackage{appendixnumberbeamer}
\usepackage{tcolorbox}
\usepackage{german}
\usepackage{makecell}
\usepackage{mathtools}
\usepackage{appendixnumberbeamer}
\pretocmd{\appendix}{\let\appendixorig\relax}{}{}
\usepackage{hyperref}
\renewcommand\theadalign{bc}
\renewcommand\theadfont{\bfseries}
\renewcommand\theadgape{\Gape[4pt]}
\renewcommand\cellgape{\Gape[4pt]}
\newcommand\Tstrut{\rule{0pt}{2.6ex}}
\setbeamertemplate{itemize/enumerate body begin}{\Large}
\setbeamertemplate{itemize/enumerate subbody begin}{\large}
\hypersetup{pdfpagemode=FullScreen}
\setbeamerfont{page number in head/foot}{size=\large}
\setbeamertemplate{footline}[frame number]
\tcbuselibrary{listings}
\newtcblisting{mygreencode}[1]{%
boxsep=1pt,
boxrule=2pt,
arc=3mm,
auto outer arc,
colframe=green!40!
black,colback=green!5,
listing options={language=C},
listing only,
#1
}
\newenvironment{specialframe}
{
\begingroup
\advance\textwidth2cm % see beamerthemeGoettingen.sty for the number
\hsize\textwidth
\columnwidth\textwidth
\begin{frame}[plain]
}
{
\end{frame}
\endgroup
}
\makeatletter
\usepackage{xpatch}
\patchcmd\beamer@@tmpl@frametitle{sep=0.3cm}{sep=0.6cm}{}{}
\makeatother
\begin{document}
\frame{
\frametitle{Test}
\includegraphics[width=9cm]{Background}
\includegraphics[width=2cm]{Added1}
\includegraphics[width=2cm]{Added2}
\includegraphics[width=2cm]{Added3}
\end{document}
At the end it should look like this:
But of course first of all only the large picture is shown. Then I click and the first blue box is added, then the other and so on (blue boxes are examples, I have jpeg files with certain figures). Slide counter should not change.
I tried for example something like this:
\includegraphics[width=9cm]{LargePicture}
\hspace{4cm}\vspace{-4cm}\only<2>{\includegraphics[width=2cm]{Added1}}
\hspace{-0.34em}\only<3>{\includegraphics[width=2cm]{Added2}}
\hspace{-0.17em}\only<4>{\includegraphics[width=2cm]{Added3}}
So I somehow need to manually place these in the right place. When I used vspace and hspace and tried it the problem also was that each time I modified one parameter to get one graphic in the right place this influenced the others. When I tried to build an environment around it with coordinates the pause function did not work anymore.


<+->also for the firs node – BambOo May 21 '20 at 21:31