Re: Print[Plot] vs Print[text,Plot]?
- To: mathgroup at smc.vnet.net
- Subject: [mg87936] Re: [mg87907] Print[Plot] vs Print[text,Plot]?
- From: "W_Craig Carter" <ccarter at mit.edu>
- Date: Mon, 21 Apr 2008 03:22:06 -0400 (EDT)
- References: <200804200350.XAA11371@smc.vnet.net>
Hello AES,
I believe mathematica is doing something sensible here. It has scaled
your graphics so that your print statement produces objects of about
the same size. I believe this is true in 5.0 as well.
To get what you want with Print, you could specify that you want a
large graphics object,
viz:
p = Plot[Sin[x], {x, 0, Pi}, ImageSize -> Large]
Print["text", p] (*should also work in 5.0*)
However, I believe what you might want would be better if you used
Grid (6.0), or used Inset(6.0), or used FrameLabel->"text" in your
plot (5.0)
Kind Regards, Craig
> Print[Plot[---]];
> Print["Some text\n", Plot[---]];
> * This is documented --or better, warned about -- where?
>
> (since it looks like I'll have to, once again, step aside from
> attempting to accomplish anything useful with 6.0 and
> burn up more time digging into its arcane documentation,
> trying to understand this. Apologies for the sarcasm --
> but that's the way it feels.)
>
>
--
W. Craig Carter
- References:
- Print[Plot] vs Print[text,Plot]?
- From: AES <siegman@stanford.edu>
- Print[Plot] vs Print[text,Plot]?