Hi, I am trying to change the font size of list items in ODS text but to no avail.... (note the template does successfully change the text size of proc ods paragraph font, but not the bulleted list font). Help in adjusting the template as required will be much appreciated.
filename pptout "temp.ppt";
proc template;
define style styles.mypowerpoint;
parent = styles.powerpointlight;
class SystemTitle / fontsize=20pt;
scheme 'ODS Light'/ body_font = ("Calibri, <MTsans-serif>, <sans-serif>",12pt) ;
class usertext / font_size=12pt;
style paragraph from usertext;
end;
run;
ods powerpoint file=pptout nogfootnote style=mypowerpoint;
ods powerpoint layout=titleslide nogtitle;
proc odstext;
p "This text is 12pt - YEY :-)" ;
run;
proc odstext;
list;
item;
p "But my list isn't 12pt";
list;
item;
p 'Nor is my nested list';
list;
item 'They are both 32pt';
end;
end;
item 'How can I change this in Proc Template?';
end;
run;
ods _all_ close;
Many thanks,
Marie
Okay - something simple I didn't know ... to see the template I just needed to use the following code:
proc template;
source styles.powerpointlight;
run;
then it is easy to see that I eneded to adjust the List class
class List / fontsize = 12pt;
Reference: Concepts: Styles and the TEMPLATE Procedure
Okay - something simple I didn't know ... to see the template I just needed to use the following code:
proc template;
source styles.powerpointlight;
run;
then it is easy to see that I eneded to adjust the List class
class List / fontsize = 12pt;
Reference: Concepts: Styles and the TEMPLATE Procedure
Kudos for finding the solution yourself!
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.