LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (November 2003, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 10 Nov 2003 14:08:30 -0500
Reply-To:   Jim Davis <jdavis@RADFORD.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Jim Davis <jdavis@RADFORD.EDU>
Subject:   Re: MS Word, dde, and MathType

Howard,

This is basically what I have: --- filename out dde 'winword|"c:\tests\todoc.doc"!x1' notab;

data _null_; length discuss $400.;

file out;

if _n_ gt 1 then stop;

discuss = 'The null hypthesis is H0: mu <= 100.'; put discuss ; ---

I also use the put statement with variables. I'd like to be able to write 'H0: mu <= 100' with an italized H, subscript 0, Greek mu, and the <= symbol. Then I could write 5 pairs of null and alternative hypotheses for a multiple choice test.

All the other questions have numeric or character answers that are straightforward.

Thanks.

Jim


Back to: Top of message | Previous page | Main SAS-L page