SAS,在put语句中更改字体大小

时间:2019-05-01 17:35:07

标签: sas put

data _NULL_;
    file print;
    if e then put 'No observations';
    set TableA end=e;
    put 'here is the table A';
    stop;
run;

如何更改put语句中引号的字体大小和颜色?

1 个答案:

答案 0 :(得分:0)

通常,您可能希望在标题语句上使用图形选项。

但是,可以使用通过escapechar引入的内联样式指令来修改ODS输出。

ods pdf file='want.pdf';

ods escapechar = '^';

* standard options for title statement;
title color=white bcolor=blue bold italic height=36pt "Title for want";

data _null_;
  file print;
  put '^{style [fontsize=24pt color=Red]Hi}';  * inline styling;
run;

ods pdf close;