Hello everybody! I try to use "Inset" to include small plots in a larger plot, and I have a problem of frontiers... Here is an illustration from the documentation. A function p1
p1 = Plot[{Sin[x], Sin[2 x]}, {x, 0, 2 \[Pi]}, ImageSize -> 200,
Frame -> True, Background -> LightYellow]
An overlay:
ParametricPlot[{Sin[x], Sin[2 x]}, {x, 0, 4 \[Pi]}, Frame -> True,
Prolog -> Inset[p1, {1, -.5}]]
Unfortunately, half of the first plot is lost! What can I do to really superimpose both windows, even if the yellow one go beyond the Lissajous curve region?
Regards, Claude