<?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 Re: Unable to change the font of 1st TOC level in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762505#M25251</link>
    <description>&lt;P&gt;Well you do need to create your own style and apply customizations as you find them in other styles.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is well worth reading the doc&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p10mxeb6wxqfjgn1p5u0w4t8qf20.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p10mxeb6wxqfjgn1p5u0w4t8qf20.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;as well as this paper&amp;nbsp;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3235-2019.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3235-2019.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Both will contain examples and additional useful information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use this code to look at a style definition:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
source Styles.Word ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I used some style definitions from styles.journal and applied it to a styles.word based style, give it a try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
 * change ods path to say where to store
 * styles
 */
ods path
  (prepend) work.templates (update)
;

/*
 * list default style for word destination
 * NOTE: it contains a scheme statement, this is needed for ODS WORD
 */
proc template;
source Styles.Word ;
source styles.journal;
run;

/*
 * create your own style based on default styles.word
 *
 * colors are coming from the SCHEME definition in styles.word
 */
proc template;
	define style styles.myword;
		parent = Styles.Word;
  
    class fonts /
      'FixedStrongFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,bold)
      'FixedEmphasisFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,italic)
      'FixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt)
      'BatchFixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",8pt)
      'docFont' = ("Arial, &amp;lt;sans-serif&amp;gt;, &amp;lt;MTsans-serif&amp;gt;",8pt)
    ;
    class HeadersAndFooters  /
      backgroundcolor = light1
    ;
    class Table /
      borderwidth = 1
      borderspacing = 0
      cellpadding = 7
      frame = HSIDES
      rules = GROUPS
      bordercollapse = separate
      borderstyle = solid
    ;
		class TOC1 /
			marginbottom = 5pt
			font = Fonts('docFont')
      color = accent1
    ;
		class TOC2 /
			marginleft = .14in
			marginbottom = 5pt
			font = Fonts('docFont')
    ;
		class TOC3 /
			marginleft = .28in
			marginbottom = 5pt
			font = Fonts('docFont')
    ;
	end;
run;

/*
 * use ODS WORD with styles and option to collect TOC
 *
 * Note that Microsoft Word does not automatically update the TOC
 * when the document is loaded. You must instruct Microsoft Word
 * to update the TOC manually.
 * One way to do that is to type CTRL+A F9 on your keyboard.
 */
ods word file="c:\temp\toc_issue.docx" 
  style=styles.myword
	options(contents="yes" toc_data="yes")
;

  title "first Report";
  proc print data=sashelp.class;
  run;
  title "second report";
proc print data=sashelp.class;
  run;

run;
ods word close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 19 Aug 2021 12:25:00 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2021-08-19T12:25:00Z</dc:date>
    <item>
      <title>Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762273#M25248</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to make a custom word template. I got most of the way there, but I can't change the font of the 1st TOC level to Arial:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
	define style styles.customjournal;
		parent = styles.journal1a;
		style fonts from fonts /
			'docFont' = ("Arial", 10pt)
			'headingFont' = ("Arial", 10pt, bold)
			'TitleFont' = ("Arial", 10pt, bold)
			'FooterFont' = ("Arial", 9pt);
		style Table from Table /
			cellpadding = 2;
		style Header from Header /
			background=grayf2;
		style Data from Data /
			just=center;
		style TitlesAndFooters from TitlesAndFooters /
			just=left;
		style SystemFooter from TitlesAndFooters /
			font = Fonts('FooterFont');
		style SystemTitle2 from SystemTitle /
			font = Fonts('docFont');
		style SystemTitle3 from SystemTitle;
		class contenttitle /
			content = "TABLE OF CONTENTS"
			font = Fonts('TitleFont')
			fontsize=5
			just = left;
		class TOC1 /
			marginbottom = 5pt
			font = Fonts('docFont');
		class TOC2 /
			marginleft = .14in
			marginbottom = 5pt
			font = Fonts('docFont');
		class TOC3 /
			marginleft = .28in
			marginbottom = 5pt
			font = Fonts('docFont');
	end;
run;

options nobyline nodate nonumber;
options topmargin=2.5cm leftmargin=3.0cm bottommargin=1.5cm rightmargin=1.5cm;
options orientation=landscape;
options papersize="ISO A4";
ods word file="C:\Users\&amp;amp;sysuserid\Downloads\SAS\toc_issue.docx" style=styles.customjournal
	options(cant_split="no"
	toc_data="yes"
	contents="yes");

proc report data=sashelp.cars;
columns Origin Make n;
define Origin / group;
define Make / group;
run;
ods word close;
options byline date number;
options orientation=portrait;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In Word, the font is&amp;nbsp;Cumberland AMT which I assume is a leftover from journal1 resp. journal1a:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TOC.PNG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62693iF76DE8D906942A33/image-size/large?v=v2&amp;amp;px=999" role="button" title="TOC.PNG" alt="TOC.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What do I need to add to the template to change the font of the first node to Arial? Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 12:46:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762273#M25248</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-18T12:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762478#M25249</link>
      <description>&lt;P&gt;The WORD and POWERPOINT destination use style defintions that contain a SCHEME statement. So you have to base your style from the default styles.word style used by ODS WORD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find below a code sample that uses the default styles.word and makes some changes. Please note you have to open the word doc and update the TOC entry field to show the TOC entries, use the "Update Field" right mouse button action on the feld.&lt;/P&gt;
&lt;P&gt;ODS WORD puts in this field:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bruno_SAS_0-1629359261427.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62717iF8547BB25516FBB2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bruno_SAS_0-1629359261427.png" alt="Bruno_SAS_0-1629359261427.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is a code sample:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
 * change ods path to say where to store
 * styles
 */
ods path
  (prepend) work.templates (update)
;

/*
 * list default style for word destination
 * NOTE: it contains a scheme statement, this is needed for ODS WORD
 */
proc template;
source Styles.Word ;
run;

/*
 * create your own style based on default styles.word
 */
proc template;
	define style styles.myword;
		parent = Styles.Word;
  
    class fonts /
      'FixedStrongFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,bold)
      'FixedEmphasisFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,italic)
      'FixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt)
      'BatchFixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",8pt)
      'docFont' = ("Arial, &amp;lt;sans-serif&amp;gt;, &amp;lt;MTsans-serif&amp;gt;",8pt)
    ;
		class TOC1 /
			marginbottom = 5pt
			font = Fonts('docFont')
      color = cx447200
    ;
		class TOC2 /
			marginleft = .14in
			marginbottom = 5pt
			font = Fonts('docFont');
		class TOC3 /
			marginleft = .28in
			marginbottom = 5pt
			font = Fonts('docFont');
	end;
run;

/*
 * use ODS WORD with styles and option to collect TOC
 *
 * NOTE: The doc entries are not displayed, you have to use the "Update Field"
 *       so that the toc is build in the word doc
 */
ods word file="c:\temp\toc_issue.docx" 
  style=styles.myword
	options(contents="yes" toc_data='yes' );

  title "first Report";
  proc print data=sashelp.class;
  run;
  title "second report";
proc print data=sashelp.class;
  run;

run;
ods word close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 07:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762478#M25249</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-19T07:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762490#M25250</link>
      <description>&lt;P&gt;Thanks! TOC uses Arial across all levels when I use word style as basis. Is there a way of adapting the journal1a style to include the scheme statement? The word style is quite far from my needed look &amp;amp; feel, mainly wrt. which lines in the tables are shown and which ones are not.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 09:08:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762490#M25250</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-19T09:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762505#M25251</link>
      <description>&lt;P&gt;Well you do need to create your own style and apply customizations as you find them in other styles.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is well worth reading the doc&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p10mxeb6wxqfjgn1p5u0w4t8qf20.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p10mxeb6wxqfjgn1p5u0w4t8qf20.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;as well as this paper&amp;nbsp;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3235-2019.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3235-2019.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Both will contain examples and additional useful information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use this code to look at a style definition:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
source Styles.Word ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I used some style definitions from styles.journal and applied it to a styles.word based style, give it a try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
 * change ods path to say where to store
 * styles
 */
ods path
  (prepend) work.templates (update)
;

/*
 * list default style for word destination
 * NOTE: it contains a scheme statement, this is needed for ODS WORD
 */
proc template;
source Styles.Word ;
source styles.journal;
run;

/*
 * create your own style based on default styles.word
 *
 * colors are coming from the SCHEME definition in styles.word
 */
proc template;
	define style styles.myword;
		parent = Styles.Word;
  
    class fonts /
      'FixedStrongFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,bold)
      'FixedEmphasisFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt,italic)
      'FixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",11pt)
      'BatchFixedFont' = ("&amp;lt;monospace&amp;gt;, &amp;lt;MTmonospace&amp;gt;, monospace",8pt)
      'docFont' = ("Arial, &amp;lt;sans-serif&amp;gt;, &amp;lt;MTsans-serif&amp;gt;",8pt)
    ;
    class HeadersAndFooters  /
      backgroundcolor = light1
    ;
    class Table /
      borderwidth = 1
      borderspacing = 0
      cellpadding = 7
      frame = HSIDES
      rules = GROUPS
      bordercollapse = separate
      borderstyle = solid
    ;
		class TOC1 /
			marginbottom = 5pt
			font = Fonts('docFont')
      color = accent1
    ;
		class TOC2 /
			marginleft = .14in
			marginbottom = 5pt
			font = Fonts('docFont')
    ;
		class TOC3 /
			marginleft = .28in
			marginbottom = 5pt
			font = Fonts('docFont')
    ;
	end;
run;

/*
 * use ODS WORD with styles and option to collect TOC
 *
 * Note that Microsoft Word does not automatically update the TOC
 * when the document is loaded. You must instruct Microsoft Word
 * to update the TOC manually.
 * One way to do that is to type CTRL+A F9 on your keyboard.
 */
ods word file="c:\temp\toc_issue.docx" 
  style=styles.myword
	options(contents="yes" toc_data="yes")
;

  title "first Report";
  proc print data=sashelp.class;
  run;
  title "second report";
proc print data=sashelp.class;
  run;

run;
ods word close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Aug 2021 12:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762505#M25251</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-19T12:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762563#M25252</link>
      <description>&lt;P&gt;Thanks! I got most of the way there:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
	define style styles.mywordstyle;
		parent = styles.word;
		scheme 'My style' /
			followed_hyperlink = cx954f72
			hyperlink = cx0563c1
			accent6 = cx70AD47
			accent5 = cx5B9BD5
			accent4 = cxFFC000
			accent3 = cxA5A5A5
			accent2 = cxED7D31
			accent1 = cx4472C4
			light2 = cxe7e6e6
			dark2 = cx44546A
			light1 = cxFFFFFF
			dark1 = cx000000
			body_font = ("Arial", 10pt)
			heading_font = ("Arial", 10pt, bold);
		class SystemTitle /
			fontsize = 10pt;
		class SystemTitle2 /
			fontweight=medium;
		class SystemFooter /
			fontsize = 9pt
			fontweight = medium
			just = left;
		class Table /
			cellpadding = 2
			rules = groups;
		class Header /
			borderstyle = none
			bordertopstyle = solid
			borderbottomstyle = solid
			rules = rows
			paddingleft = 0pt
			paddingright = 0pt
			cellpadding = 2
			margin = 0pt
			background=grayf2
			fontsize= 10pt;
		class LineContent /
			marginbottom = 6pt;
		class Data /
			borderstyle = none
			borderbottomstyle = none
			paddingleft = 0pt
			paddingright = 0pt
			cellpadding = 2
			margin = 0pt
			just = center;
		class contenttitle /
			content = "TABLE OF CONTENTS"
			fontsize = 14pt
			just = left
			color=black;
	end;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It now looks almost exactly as needed with a few remaining issues I was not able to fix myself:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;there is a CRLF after the system header and before the system footer, which is not there when I use the style based on journal1a. This causes the page headers and footers to expand to the point that my manually designed table breaks are all in the wrong places. Do you know how to get rid of those?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="newline.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62735i7BCAA314E2C5C1E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="newline.PNG" alt="newline.PNG" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;There is some left/right padding still left somewhere causing columns in my report to fit slightly less text than before, introducing unwanted line breaks. With my previous style, "Day 184" fits without line breaks with style(column)=[width=1.4cm], with my new template it does not. Do you know where else could the padding be defined, or what else could be causing this?&lt;/LI&gt;&lt;LI&gt;Page numbers introduced by putting&amp;nbsp;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title2 justify=right "Page ~{thispage} of ~{lastpage}";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;are in bold font as opposed to normal. Do you know what class this is controlled by?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Tjank you for your help so far.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 15:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762563#M25252</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-19T15:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762794#M25253</link>
      <description>&lt;P&gt;About 1, the CRLF you best contact technical support for that, since also the default style will create those&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About 2, the spacing/padding for cells you do need to look at the differences in the style definitions, check the class Data&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About 3, adding page information can also be achieved with the example below OPTIONS number; must be set. The style for a TITLE2 line is SystemTitle2 and so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    class pageno /
      content = "Page {PAGE} of {NUMPAGES}"
      vjust=bottom
      just=center
    ;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 09:23:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762794#M25253</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-20T09:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762818#M25255</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for the suggestion, I have reached out to SAS support. Regarding the page number: I already have&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;		class SystemTitle2 /
			fontweight=medium;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;in my template. It is just the page numbers themselves which are bold, not the entire row. I have tried your approach with&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options number;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;without further adjustments. While the font weight is correct, it put the page number in the footer whereas I need it in the header. Moreover, my actual header does contain more than just a page number (document number, creation date, etc.) so I don't think using options number is workable as I would effectively have to put a variable element into the template.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 12:02:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762818#M25255</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-20T12:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762828#M25256</link>
      <description>&lt;P&gt;Using the definition below all text is the same&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    class systemtitle2 /
      padding=0
      color = cx0000ff
      fontsize = 12pt
      fontweight = medium
      font = heading_font
    ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Aug 2021 12:43:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762828#M25256</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-20T12:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762831#M25257</link>
      <description>&lt;P&gt;Could it be something different about our Office versions then? On my machine the page numbers are still bold:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pagenumber.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62773iB550B0342A478D56/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pagenumber.PNG" alt="pagenumber.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 12:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762831#M25257</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-20T12:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762842#M25258</link>
      <description>&lt;P&gt;Find attached my docx file created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using SAS version:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;28 %put NOTE: &amp;amp;=sysvlong4;&lt;BR /&gt;NOTE: SYSVLONG4=9.04.01M7P08052020&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 13:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762842#M25258</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-20T13:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762845#M25259</link>
      <description>I am on 9.04.01M7P08052020 too. Do you also get non-bold page numbers if you use my proc template (the one with mywordstyle) in its entirety?</description>
      <pubDate>Fri, 20 Aug 2021 13:33:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762845#M25259</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2021-08-20T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to change the font of 1st TOC level</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762848#M25260</link>
      <description>&lt;P&gt;Indeed, I do get bold page numbers&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bruno_SAS_0-1629467114839.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62779iC3AA8A3BEE79E0A4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bruno_SAS_0-1629467114839.png" alt="Bruno_SAS_0-1629467114839.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 13:45:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Unable-to-change-the-font-of-1st-TOC-level/m-p/762848#M25260</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-08-20T13:45:25Z</dc:date>
    </item>
  </channel>
</rss>

