I would like to layover a graph ontop of a figure but I need specific points in the graph to correspond with specific points in the figure.
I know that I can import the figure using
fig=Import["filename.ext","Graphics"];
and I create my plot using graphics:
p=Plot[Graphics[Points[data]]];
I think I need to overlay the plot on the figure by writing
Show[{fig,p}]
However I would like to control the size of the resulting figure without using the mouse and similarly be able to align the two graphics's.
Any pointers to the commands that are needed for this would be greatly appreciated.