I've used SAS Display Manager for many years. I now have SAS Studio at work. I noticed that Results in SAS Studio using HTMLBlue are smaller than the Results in HTMLBlue from the same program run in SAS Display Manager.
I've tried the other output styles in SAS Studio. Most of them seem too small. The StudioDemo style looks like HTMLBlue but seems too large. (I'm assuming based on the style name that it's intended for doing demonstrations with SAS Studio.)
I looked at the font defintions for HTMLBlue and StudioDemo, then tried a version that is midway between the two styles. It would be great if SAS would consider including a style like this (see below) in a future release.
Others have noticed the font size issue in the Results window -- https://communities.sas.com/t5/SAS-Analytics-U/change-font-size-in-Results-window/m-p/158591/highlight/true#M651.
proc template;
define style Styles.HTMLBlueMidSize;
parent = styles.HTMLBlue;
style fonts /
'TitleFont2' = ("<sans-serif>, <MTsans-serif>, Helvetica,Helv",4,
bold)
'TitleFont' = ("<sans-serif>, <MTsans-serif>, Helvetica, Helv",5,
bold)
'StrongFont' = ("<sans-serif>, <MTsans-serif>, Helvetica, Helv",4,
bold)
'EmphasisFont' = ("<sans-serif>, <MTsans-serif>, Helvetica,Helv",4,
italic)
'FixedFont' = ("<monospace>, Courier",4)
'BatchFixedFont' = ("SAS Monospace, <monospace>, Courier, monospace"
,4)
'FixedHeadingFont' = ("<monospace>, Courier, monospace",4)
'FixedStrongFont' = ("<monospace>, Courier, monospace",4,bold)
'FixedEmphasisFont' = ("<monospace>, Courier, monospace",4,italic)
'headingEmphasisFont' = (
"<sans-serif>, <MTsans-serif>, Helvetica,Helv",4,bold italic)
'headingFont' = ("<sans-serif>, <MTsans-serif>, Helvetica,Helv",4,
bold)
'docFont' = ("<sans-serif>, <MTsans-serif>, Helvetica, Helv",4);
end;
run;
... View more