BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mduarte
Quartz | Level 8

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

1 ACCEPTED SOLUTION

Accepted Solutions
mduarte
Quartz | Level 8

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

View solution in original post

2 REPLIES 2
mduarte
Quartz | Level 8

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

ballardw
Super User

Kudos for finding the solution yourself!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 3064 views
  • 1 like
  • 2 in conversation