Date: Fri, 16 Sep 2011 11:50:52 -0700
Reply-To: mlhoward@avalon.net
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Mary <mlhoward@AVALON.NET>
Subject: Re: ODS RTF: How to get the y-hat symbol to appear?
Content-Type: text/plain; charset="UTF-8"
Figured it out thanks- to do so you look at the Insert-Symbol in Word and it will tell you the unicode number, then you put that unicode number into the SAS code:
ods rtf text="^S={font=('arial',10pt) just=left} ^{unicode 0177} = y^{sub st} + B(X - x^{sub st})";
and that worked.
-Mary
--- mlhoward@avalon.net wrote:
From: Mary <mlhoward@avalon.net>
To: <SAS-L@LISTSERV.UGA.EDU>
Subject: ODS RTF: How to get the y-hat symbol to appear?
Date: Fri, 16 Sep 2011 11:25:24 -0700
Does anyone know how to get the y-hat predicted value symbol to appear in ods rtf? I read that it was unicode 375 but that does not appear to work. In this equation:
ods rtf text="^S={font=('arial',10pt) just=left} y = y^{sub st} + B(X - x^{sub st})";
instead of the first y I want the y with the caret hat on top. I tried ^{unicode 375} but that did not work (got nothing).
-Mary