Date: Wed, 8 Jan 2003 15:35:20 -0500
Reply-To: John Hoyer <johnhoyer@NORTHWESTERNMUTUAL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: John Hoyer <johnhoyer@NORTHWESTERNMUTUAL.COM>
Subject: ODS PDF Style Overrides
I've been working to take some of my mainframe MVS programs and produce
PDF output from them. I've been able to do this, but cannot seem to
override any of the style characteristics in the PDF output. I've been
using Proc Template to do this as follows:
**********************
proc template;
define style Styles.Custom_jwh_pdf;
parent=Styles.SansPrinter;
style fonts from fonts /
'footFont' = ("Courier, Times, Helvetica",8pt)
'TitleFont' = ("Courier, Times, Helvetica",12pt);
replace Output from Container /
Frame = void
rules = none
borderwidth = 0pt;
end;
run;
options nodate pageno=1 orientation=landscape ls=164 ps=60;
ods listing close;
ods pdf file=pdfout nocolor notoc style=Styles.Custom_jwh_pdf;
***************************
It runs fine, but I don't get any changes to the regular style when I
download the pdf file and view it. Does ODS allow changes to styles for
PDF destinations?