Re: Graph inside another graph
- To: mathgroup at smc.vnet.net
- Subject: [mg68936] Re: Graph inside another graph
- From: "Jens-Peer Kuska" <kuska at informatik.uni-leipzig.de>
- Date: Fri, 25 Aug 2006 05:34:48 -0400 (EDT)
- Organization: Uni Leipzig
- References: <echef8$ope$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Block[{$DisplayFunction = Identity}, plt1 =
Plot[Sin[x], {x, -Pi, Pi}];
plt2 = Plot[Sin[x]/x, {x, -4Pi, 4Pi}]
];
Show[
Graphics[
{Rectangle[{0, 0}, {1, 1}, plt1],
Rectangle[{0.55, 0.15}, {0.95, 0.5}, plt2]
}]
]
Regards
Jens
<maruth at gmail.com> schrieb im Newsbeitrag
news:echef8$ope$1 at smc.vnet.net...
| Hello,
| I am generating graphs in mathematica 5.0 that I
export to eps for use
| in latex.
| I have two graphics objects each from
MultipleListPlot[.], However I
| cannot seem to find a way to place a graph
inside another graph (the
| inside graph
| being smaller and in an upper corner having it's
own axis but within
| the frame of the larger graph). If anyone knows
an easy method to do
| this, or any method at all I would appreciate
it.
|