"El Nino" Text [message #6902] |
Wed, 04 September 1996 00:00  |
Andy Loughe
Messages: 174 Registered: November 1995
|
Senior Member |
|
|
How in IDL do I print "El Nino" with a tilde over the small n?
--
Andrew F. Loughe afl@cdc.noaa.gov
University of Colorado, CIRES http://cdc.noaa.gov/~afl
Campus Box 449 phn:(303)492-0707
fax:(303)497-7013
Boulder, CO 80309-0449 "He who laughs last thinks slowest!"
|
|
|
Re: "El Nino" Text [message #6977 is a reply to message #6902] |
Thu, 05 September 1996 00:00  |
joseph.b.gurman
Messages: 15 Registered: October 1995
|
Junior Member |
|
|
In article <322D998B.7850@cdc.noaa.gov>, Andy Loughe <afl@cdc.noaa.gov> wrote:
> How in IDL do I print "El Nino" with a tilde over the small n?
Andy -
You've probably gotten lots of responses by now, but in general, you
want to:
IDL> set_plot, 'ps
IDL> !p.font = 0
IDL> device, /<yourfavoritePostScriptFontName>, /isolatin
(where <yourfavoritePostScriptFontName> is something like Times, Palatino, &c.)
IDL> n_tilde = string(241b)
IDL> xyouts, x_coord, y_coord, 'El Ni' + n_tilde+ 'o', ....
Hope this helps,
Joe Gurman
--
| Joseph B. Gurman / NASA Goddard Space Flight Center / Solar |
| Data Analysis Center/ Code 682.3 / (301) 286-4767 / |
| joseph.b.gurman@gsfc.nasa.gov |
| Civil servants are still not allowed to have opinions while at |
| work. Therefore, any opinions herein must be someone else's. |
|
|
|
Re: "El Nino" Text [message #6979 is a reply to message #6902] |
Thu, 05 September 1996 00:00  |
Alex Taylor
Messages: 1 Registered: September 1996
|
Junior Member |
|
|
This wouldn't happen to be the Robert Moss at EPTD, would it?
alex
--
**********************************************************
Alexander Wright Taylor
Department of Geology and Geophysics
Louisiana State University
LSU Tectonics - Visualization and Data Integration Guru
Pvt., 5th LA, Co. G "Swamp Rangers"
1st Lt, Co. G CSMC
Pvt, USMC
**********************************************************
|
|
|
Re: "El Nino" Text [message #6983 is a reply to message #6902] |
Thu, 05 September 1996 00:00  |
Robert Moss
Messages: 74 Registered: February 1996
|
Member |
|
|
Andy Loughe wrote:
>
> How in IDL do I print "El Nino" with a tilde over the small n?
>
> --
> Andrew F. Loughe afl@cdc.noaa.gov
> University of Colorado, CIRES http://cdc.noaa.gov/~afl
> Campus Box 449 phn:(303)492-0707
> fax:(303)497-7013
> Boulder, CO 80309-0449 "He who laughs last thinks slowest!"
enje = string( byte( "361 ) )
xyouts, 0.5, 0.5, /norm, charsize = 3, '!3El Ni' + enje + 'o'
See showfont, 3, "Simplex Roman" for more info.
----
Robert M. Moss, Ph.D. - mossrm@texaco.com - FAX (713)954-6911
------------------------------------------------------------ -----
This does not necessarily reflect the opinions of Texaco Inc.
|
|
|