Re: Different Color in ToString
- To: mathgroup at smc.vnet.net
- Subject: [mg125613] Re: Different Color in ToString
- From: David Reiss <dbreiss at gmail.com>
- Date: Thu, 22 Mar 2012 05:47:39 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jkcbgl$qed$1@smc.vnet.net>
Text[Row[{Style["There is ", Blue], Style[ToString[n], Red],
Style[" numbers here", Blue]}]]
--David
On Mar 21, 6:45 am, Scott Colwell <scolw... at uoguelph.ca> wrote:
> Does anyone know how to change the color of the font in a ToString command.
>
> For example, in the following, the text should be blue, but the number 3 should be red.
>
> n = 3;
> Text[Style["There is "<> ToString[Style[n, Red]] <> " numbers here", Blue]]
>
> Thank you,