I have a picture which needs to be placed above another figure that I drew using tikzpicture. The pictures are being positioned side by side.
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\includegraphics[scale=1]{m4.pdf}
\begin{tikzpicture}
\node(A0) at (0,0) {p = 0};
\node(A1) at (10,0) {p = 1};
\path[->] (A0) edge node [below] {Increasing Ramdomness} (A1);
\end{tikzpicture}
\end{document}
I want it to be like:




\node at (5,3) {\includegraphics[scale=1]{m4.pdf}};. However, I do not have your picture, so I do not know if(5,3)works, you may need to use different coordinates. – Nov 16 '18 at 05:01