|
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
|