Date: Tue, 13 May 2008 15:21:13 -0500
Reply-To: Ron Manley <ron2sas@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ron Manley <ron2sas@GMAIL.COM>
Subject: Re: compute block second line indent (ods/pdf)?
In-Reply-To: <200805131618.m4DAm2Q8002167@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
Hi I have used a trick to get indent's.
"^{super }^_^_^_Text to indent"
This has worked for me.
Ron.
On Tue, May 13, 2008 at 11:18 AM, Ya Huang <ya.huang@amylin.com> wrote:
> Hi there,
>
> options orientation=portrait;
> ods pdf file="c:\temp\junk.pdf" style=printer;
>
> proc report data=sashelp.class nowd;
> column _all_;
> define name / display;
> compute after _page_ / style=[just=left];
> line "[1] xxx xxx xxxx xx";
> line " yyy yyy yyy";
> text='A0A0A0A0'x||'yyy yyy yyy';
> line text $50.;
> endcomp;
> run;
>
> ods pdf close;
>
> The second line need to be indented, i.e. yyy start right under xxx.
> The old trick of padding bunch of 'A0'x is not working properly for
> ods/pdf, as shown at third line statement.
>
> Any good trick for this?
>
> Thanks
>
> Ya
>
|