LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 13 Oct 2008 13:16:46 -0400
Reply-To:   Ya Huang <ya.huang@AMYLIN.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Ya Huang <ya.huang@AMYLIN.COM>
Subject:   Re: getting indent in a footnote
Comments:   To: phekuchand@GMAIL.COM

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?


Back to: Top of message | Previous page | Main SAS-L page