Re: Colored Output
- To: mathgroup at smc.vnet.net
- Subject: [mg87235] Re: Colored Output
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 5 Apr 2008 04:21:43 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <ft4n1k$3pt$1@smc.vnet.net>
foice.news at gmail.com wrote:
> I would like to have evaluated expression with some costants painted
> in a particular color, just to make reading easier.
> Say my input is
>
> D[a*Sin[x]]
>
> and the output should be
>
> a*Cos[x]
>
> with colored "a", say magenta.
>
> Is this achievable, and how? which kind of attributed of the constant
> a should I set?
Depending on the complexity of your actual expressions, the easiest way
to color some parts of them might be using replacement rules (and
possibly some *Cases* statements) to apply the desired *Style* commands
to the constants. For instance,
D[a*Sin[x]] /. a -> Style[a, Magenta]
Regards,
-- Jean-Marc