The following code due to @domenico-camasta
\documentclass{article}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\node(a){\includegraphics[width=0.8\textwidth]{example-image-a}};
\node at (a.north east)
[
anchor=center,
xshift=0mm,
yshift=0mm
]
{
\includegraphics[width=0.3\textwidth]{example-image-b}
};
\end{tikzpicture}
\end{figure}
\end{document}
See also Superimpose two images in an article
How do I need to rewrite
a.north east
in the example above if I would like image B to be placed:
1) in the centre of image A
2) in the centre east of image A?




a.center. 2. I don't quite understand what you mean, are you aftera.east?a.east. – Torbjørn T. Jun 30 '17 at 18:57