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 (January 2003, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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?


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