|
You need to turn on 'ASIS' option in the style:
ods listing close;
ods rtf file="c:\temp\junk.rtf" style=rtf;
ods escapechar='^';
proc print data=sashelp.class;
title "xxx";
footnote1 "^S={just=left}Note: This is footnote 1";
footnote2 "^S={just=left asis=on} This is footnote 2";
run;
ods rtf close;
ods listing;
On Mon, 13 Oct 2008 10:00:03 -0700, maverick2 <phekuchand@GMAIL.COM> wrote:
>I am using ODS RTF and I need the following footnotes:
>
>Note: This is footnote 1
> This is footnote 2
>
>
>Trouble is, I cannot get the second footnote indented. I am using the
>following code.
>
>footnote1 j=l "Note: This is footnote 1";
>footnote2 j=l " This is footnote 2";
>
>The space is not being considered and I end up getting this.
>
>Note: This is footnote 1
>This is footnote 2
>
>
>How can I indent the 2nd footnote?
|