I'm going to add a new line for my posttext option in proc report , and I found that title statement can realize it in title with ods escapechar statement, but posttext option can't do it.
ods escapechar='^'; title "He^{newline}llo "; proc report data = sashelp.class style(report) = {just = left pretext = "表{\field{\fldinst{SEQ table}}}.CGX1321 ^{newline} Cohorts" posttext = "Hello,^{newline} world"}; run;
Besides, I want to devise my pretext and posttext option style separatedly, like that:
proc report data = sashelp.class style(report) = {just = center fontsize = 10pt pretext = "Hello,everyone" just = left fontsize = 5pt posttext = "Hello,world"}; run;
But the result is not ideal,the pretext and posttext are all located left and fontsize are 5pt.
If anyone has good idea, please tell me , thank you very much.
... View more