Date: Mon, 31 Jan 2005 14:55:26 -0500
Reply-To: Louise Hadden <louise_hadden@ABTASSOC.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Louise Hadden <louise_hadden@ABTASSOC.COM>
Subject: Proc Report and PDF - no hyphenation in long text fields
Is there a way to turn on hyphenation in long text fields going to PDF?
Also how to specify margins in PDF? Works fine going out to RTF, but breaks
in the middle of words in PDF. I am using SAS 9.1.2. The field in
question that is splitting badly in PDF but is okay in RTF is 1000
characters in width. Code snippet follows:
ods pdf file="&sponsor..pdf" style=styles.summary;
title6 "A: Sponsor Level Data for &sponname";
run;
proc report nowd data=page12 spacing=10
style(report)=[cellpadding=5pt vjust=b]
style(lines)=[just=left font_face=Courier] ls=175;
columns bigrec;
define bigrec / style(COLUMN)={just=l font_face=Courier
font_size=8pt cellwidth=9.5in asis=on}
style(HEADER)={just=l font_face=Courier
font_weight=bold
font_size=8pt cellwidth=9.5in asis=on};
run;
Thanks in advance.