WARNING: Font specification "Times Roman" failed. Using default font family instead.
这是在用ods 输出文本时遇到的问题,帮忙看一下了。谢谢。
测试代码:
%let path="D:\azl.rtf";
data a;
input x y z;
cards;
1 2 3
4 5 6
7 8 9
;
run;
%macro rtf (dataname=);
ods listing close;
ods rtf file=&path.;
proc report data=&dataname. nowd;
run;
ods rtf close;
%mend rtf;
%rtf(dataname=a);