<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Proc Template to change Font size of PROC ODSTEXT LIST item in ODS Powerpoint in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332064#M17911</link>
    <description>&lt;P&gt;Hi, I am trying to change the font size of list items in ODS text but to no avail.... &amp;nbsp;(note the template does successfully change the text size of proc ods paragraph font, but not the bulleted list font). &amp;nbsp; Help in adjusting the template as required will be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename pptout "temp.ppt";

proc template;
   define style styles.mypowerpoint;
      parent = styles.powerpointlight;
      class SystemTitle /         fontsize=20pt;
		scheme 'ODS Light'/ body_font = ("Calibri, &amp;lt;MTsans-serif&amp;gt;, &amp;lt;sans-serif&amp;gt;",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;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Marie&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2017 04:41:41 GMT</pubDate>
    <dc:creator>mduarte</dc:creator>
    <dc:date>2017-02-13T04:41:41Z</dc:date>
    <item>
      <title>Proc Template to change Font size of PROC ODSTEXT LIST item in ODS Powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332064#M17911</link>
      <description>&lt;P&gt;Hi, I am trying to change the font size of list items in ODS text but to no avail.... &amp;nbsp;(note the template does successfully change the text size of proc ods paragraph font, but not the bulleted list font). &amp;nbsp; Help in adjusting the template as required will be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename pptout "temp.ppt";

proc template;
   define style styles.mypowerpoint;
      parent = styles.powerpointlight;
      class SystemTitle /         fontsize=20pt;
		scheme 'ODS Light'/ body_font = ("Calibri, &amp;lt;MTsans-serif&amp;gt;, &amp;lt;sans-serif&amp;gt;",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;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Marie&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 04:41:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332064#M17911</guid>
      <dc:creator>mduarte</dc:creator>
      <dc:date>2017-02-13T04:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template to change Font size of PROC ODSTEXT LIST item in ODS Powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332422#M17922</link>
      <description>&lt;P&gt;Okay - something simple I didn't know ... to see the template I just needed to use the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
source styles.powerpointlight;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;then it is easy to see that I eneded to adjust the &lt;EM&gt;List&lt;/EM&gt; class&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    class List /
      fontsize = 12pt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference:&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/odsproc/69834/HTML/default/viewer.htm#p1t0ip5z3ouo89n1qbsztf3khjqr.htm" target="_self"&gt;Concepts: Styles and the TEMPLATE Procedure&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 23:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332422#M17922</guid>
      <dc:creator>mduarte</dc:creator>
      <dc:date>2017-02-13T23:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template to change Font size of PROC ODSTEXT LIST item in ODS Powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332428#M17924</link>
      <description>&lt;P&gt;Kudos for finding the solution yourself!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 23:50:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Template-to-change-Font-size-of-PROC-ODSTEXT-LIST-item-in/m-p/332428#M17924</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-13T23:50:58Z</dc:date>
    </item>
  </channel>
</rss>

