SLC font aliases in the default style
Nico Chart_21517
Altair Employee
SLC comes with a set of font aliases that may be different from other SAS language compilers.
The aliases for SLC are:
proc template;
define style styles.custom;
parent=styles.rtf;
replace fonts /
'TitleFont2' =("Courier",9pt)
'TitleFont' = ("Courier",9pt)
'StrongFont' = ("Courier",9pt)
'EmphasisFont' = ("Courier",9pt)
'FixedEmphasisFont' = ("Courier",9pt)
'FixedStrongFont' = ("Courier",9pt)
'FixedHeadingFont' = ("Courier",9pt)
'BatchFixedFont' = ("Courier",9pt)
'FixedFont' = ("Courier",9pt)
'headingEmphasisFont' = ("Courier",9pt)
'headingFont' = ("Courier",9pt)
'docFont' = ("Courier",9pt);
end;
run;
0