Date: Tue, 27 Nov 2007 14:09:02 -0500
Reply-To: "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Organization: Internet News Service
Subject: Proc Template - modifying the font used
Consider the journal style
proc template;
define style Styles.Journal;
parent = styles.default;
replace fonts /
'SASTitleFont' = ("Arial, Helvetica, Helv",2,Bold Italic)
'TitleFont2' = ("Arial, Helvetica, Helv",2,Bold Italic)
'TitleFont' = ("Arial, Helvetica, Helv",2,Bold Italic)
'StrongFont' = ("Arial, Helvetica, Helv",2,Bold Italic)
'EmphasisFont' = ("Arial, Helvetica, Helv",2,Italic)
'FixedEmphasisFont' = ("Courier New, Courier",2,Bold Italic)
'FixedStrongFont' = ("Courier New, Courier",2,Bold)
'FixedHeadingFont' = ("Courier New, Courier",2,Italic)
'FixedFont' = ("Courier New, Courier",2)
'headingEmphasisFont' = ("Arial, Helvetica, Helv",2,Bold Italic)
'headingFont' = ("Arial, Helvetica, Helv",2,Italic)
'docFont' = ("Arial, Helvetica, Helv",2)
;
....
If I wanted to _change_ the settings of only the TitleFont, what would the
syntax be ?
Replace seems to whack all the other fonts .
proc template;
define style MY_JOURNAL;
parent=styles.journal;
...
replace fonts /
'TitleFont' = ("Courier New",3,Bold)
;
...
run;
--
Richard A. DeVenezia
|