Re: a Graphic in a Graphic
- To: mathgroup at smc.vnet.net
- Subject: [mg22326] Re: [mg22307] a Graphic in a Graphic
- From: Adalbert Hanssen <hanssen at Zeiss.de>
- Date: Fri, 25 Feb 2000 21:13:14 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Hi, Andre
See Shaw and Tigg,
Applied Mathematica, Getting Started, Getting it Done,
p114f (1994).
The main part is to generate the parts separately, e.g.
mainPlot=Plot[....];
insetPlot=Plot[....];
Show[Graphics[{Rectangle[{0,0},{1,1},mainPlot]
,Rectangle[{.5,.5},{1,1},insetPlot]
}
]
];
the lower and upper points in the Rectangles being adjusted properly depending on
available space for the insetPlot.
Hope this helps
Adalbert
andre at aflo4.ifw-dresden.de am 24.02.2000 10:52:00
An: mathgroup at smc.vnet.net@EMAIL
Kopie: (Blindkopie: Adalbert Hanssen/Aalen/Zeiss/DE)
Thema: [mg22307] a Graphic in a Graphic
Hi All,
I'm running Mathematica 4.0 and want to create
a graphic into a graphic, but all I did up to day
doesn't work very well.
If I have a graphic object (e.g. a MultipleListPlot)
I want to put a small Plot into this Graphics
like one can do this with Legends or Text:
Show[Graphics{MultipleListPlot[...],Text["...",{xPos.yPos}]};
instead of Text[] at xPos, yPos I want to put
a small Plot[...,{}, ImageSize-> {xSize,ySize}];
in this Graphic.
Can you help me ?
Andre