Dear all, I use SAS Enterprise Guide 8.3 and SAS 9.4M6, which runs on a Red Hat Linux Server. I have been trying to set Verdana as font for footnotes on PowerPoint slides using the following code: ods _all_ close;
ods path (prepend) work.template (update);
proc template;
define style styles.mystyle;
parent = styles.powerpointlight;
class SystemTitle /
fontsize = 20 pt
just = left;
class SystemFooter /
fontfamily = "Verdana"
fontsize = 7.9 pt
just = left;
end;
run;
options papersize = (240mm 143mm)
dev = png
nodate
nonumber;
ods powerpoint file = "Test.pptx"
style = styles.mystyle
nogtitle
nogfootnote;
ods powerpoint layout = TitleAndContent;
title 'This is a title';
footnote 'This is a footnote';
goptions hsize = 11.43 cm vsize = 11.43 cm;
proc gmap map = maps.us data = maps.us all;
id state;
choro statecode / statistic = frequency discrete nolegend;
run;
quit;
ods _all_ close; However, the font on the resulting PowerPoint slide is Courier instead of Verdana. I suspect that Verdana is not available. Running the following code does not list Verdana in the log: proc registry startat = "\CORE\PRINTING\FREETYPE\FONTS" list;
run; Is it somehow possible to use Verdana? I would greatly appreciate your help.
... View more