Re: FrameLabel and Style
- To: mathgroup at smc.vnet.net
- Subject: [mg126873] Re: FrameLabel and Style
- From: Helen Read <readhpr at gmail.com>
- Date: Thu, 14 Jun 2012 05:34:22 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jr9kou$3la$1@smc.vnet.net>
label = Row[{Style["x", Italic], "[m]"}];
Plot[x^2, {x, -1, 1}, Axes -> False, Frame -> True,
FrameLabel -> label]
Helen Read
University of Vermont
On 6/13/2012 4:59 AM, Derivator wrote:
> Hi all,
> I want to put the label "x [m]" in a Plot.
> The trouble is that I need "x" in italics and "[m]" in roman type.
>
> The command
>
> FrameLabel -> Style["x [m]",Italic ]
>
> puts both x and [m] in italic. The command
>
> FrameLabel -> Style[x " [m]" ]
>
> puts x in italic and [m] in roman, but gives the wrong order [m] x,
> instead of x [m].
>
> Any idea?
>
> Thanks in advance
>
>