From cpsc.ucalgary.ca!alberta!ubc-cs!uw-beaver!micro-heart-of-gold.mit.edu!rutgers!ub!zaphod.mps.ohio-state.edu!usc!wupost!darwin.sura.net!Sirius.dfn.de!zrz.tu-berlin.de!w206zrz.zrz.tu-berlin.de!dieh1232 Thu Mar 26 09:14:30 MST 1992 Article 148 of comp.lang.idl-pvwave: Path: cpsc.ucalgary.ca!alberta!ubc-cs!uw-beaver!micro-heart-of-gold.mit.edu!rutgers!ub!zaphod.mps.ohio-state.edu!usc!wupost!darwin.sura.net!Sirius.dfn.de!zrz.tu-berlin.de!w206zrz.zrz.tu-berlin.de!dieh1232 >From: dieh1232@w206zrz.zrz.tu-berlin.de (Rolf Diehl) Newsgroups: comp.lang.idl-pvwave Subject: Re: Angstrom symbol in IDL/PvWave title Keywords: special characters Message-ID: <64N1OUI@mailgzrz.tu-berlin.de> Date: 25 Mar 92 13:51:58 GMT References: <1992Mar24.201306.16257@ucsu.Colorado.EDU> Sender: Rolf Diehl , dieh1232@files1zrz.zrz.tu-berlin.de Organization: ZRZ/TU-Berlin Lines: 24 Nntp-Posting-Host: w206zrz.zrz.tu-berlin.de In article <1992Mar24.201306.16257@ucsu.Colorado.EDU> boroson@ucsu.Colorado.EDU (BOROSON BRAM S) writes: >I'm making a plot and I need to use an Angstrom symbol in a title. >I don't see this symbol listen in the vector-drawn fonts (chapter 12 >of the IDL manual) and I was wondering how other people solve this. > We got the same sort of problem here in Germany with our Umlauts ("a,"o,"u). As a workaround I initialize a commmon block at the beginning of each session that contains strings with base-character, the two dots and some character-positioning-commands. It is not really perfect in the looks, but PVI didn't offer anything better. For using these special characters I concatenate them with the other parts of the string to print, e.g.: title=aeg+'rger' common umlaut ,ae,aeg,oe,oeg,ue,ueg ae='!sa!r!u!e!9 . . !n!3' & aeg='!sA!r!u!e!9 . . !n!3' oe='!so!r!u!e!9 . . !n!3' & oeg='!sO!r!u!e!9 . . !n!3' ue='!su!r!u!e!9 . . !n!3' & ueg='!sU!r!u!e!9 . . !n!3' I suppose you could create the Angstrom in a similar way. rolf rolf diehl technical university berlin dieh1232@files1zrz.zrz.tu-berlin.de