It's buried in the link but I think you can use SystemTitle, SystemTitle2-10 and systemFooter to get the fonts set.
Style Element Names
https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.4&docsetId=odsproc&docsetTarget=p16od8jghibo9tn187hloazdzt70.htm&locale=en
Attributes
https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.4&docsetId=odsproc&docsetTarget=n0otdo2g12obp3n0zmnghcn7p4vu.htm&locale=en
@arjessup wrote: Sorry, I meant when using Proc Template. This is my code: proc template; define style styles.smaller; parent = styles.printer; class fonts from fonts / Reduce all sizes by 2pt 'TitleFont2' = ("Times",20pt,Bold Italic) 'TitleFont' = ("Times",20pt,Bold Italic) 'StrongFont' = ("Times",8pt,Bold) 'EmphasisFont' = ("Times",8pt,Italic) 'FixedEmphasisFont' = ("Courier New, Courier",7pt,Italic) 'FixedStrongFont' = ("Courier New, Courier",7pt,Bold) 'FixedHeadingFont' = ("Courier New, Courier",7pt,Bold) 'BatchFixedFont' = ("SAS Monospace, Courier New, Courier",5pt) 'FixedFont' = ("Courier New, Courier",7pt) 'headingEmphasisFont' = ("Times",9pt,Bold Italic) 'headingFont' = ("Times",9pt,Bold) 'docFont' = ("Times",8pt); class Table from Output / rules = ALL cellpadding = 4pt Reduced from 4pt to 2pt cellspacing = 0.25pt borderwidth = 0.75pt; end; run;
... View more