RE: Tick labels in Traditional Form
- To: mathgroup at smc.vnet.net
- Subject: [mg40969] RE: [mg40966] Tick labels in Traditional Form
- From: "David Park" <djmp at earthlink.net>
- Date: Sat, 26 Apr 2003 03:24:55 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Gianluca,
With just numbers it is a little difficult to tell the difference between
StandardForm and TraditionalForm. But here is an example where a letter is
introduced.
xticks = Table[{k, TraditionalForm[k i]}, {k, -6, 6, 2}];
Plot[Sin[x], {x, -2\[Pi], 2\[Pi]},
Ticks -> {xticks, Automatic}];
which looks different than
xticks = Table[{k, k i}, {k, -6, 6, 2}];
Plot[Sin[x], {x, -2\[Pi], 2\[Pi]},
Ticks -> {xticks, Automatic}];
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: Gianluca Gorni [mailto:gorni at dimi.uniud.it]
To: mathgroup at smc.vnet.net
The on-line help states that Tick label expressions are formatted
in OutputForm.
Is there a way to get TraditionalForm labels?
Gianluca Gorni