|
Re: How can I express rho bar(mean density) on the title? [message #45007 is a reply to message #45003] |
Mon, 08 August 2005 22:56  |
peter.albert@gmx.de
Messages: 108 Registered: July 2005
|
Senior Member |
|
|
Hi,
you could do the following:
IDL> plot, indgen(100), ytitle = string("_!c!7q!X")
The "_" draws the bar, "!c" does a carriage return, and "!7q!X" draws
the "rho" and returns to normal font. Alternatively
IDL> plot, indgen(100), ytitle = string("_!c" + textoidl("\rho"))
does the same.
It is not perfect, I know, the bar is a bit too high above the rho, but
at least it works.
Regards,
Peter
|
|
|