这可以使用ODS来实现,但是我有一个限制,即我不应该使用 ODS,因为我正在使用清单。我需要生成其中包含超级和下标文本的 RTF 报告。下面是我提到的使用 ODS 的示例代码。
ods rtf file='temp.rtf';
ods escapechar='^';
proc print data=sashelp.class;
title 'this value is superscripted ^{super 2} ';
title2 'this value is subscripted ^{sub 2} ';
run;
ods rtf close;
我想在 Proc 报告标题或脚注中打印上标或下标文本。