<?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 Fonts in PDF Proc Template in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566950#M22865</link>
    <description>&lt;P&gt;Is it possible to have a different font size for a title and a footnote when using ODS?&amp;nbsp; For example I want my title font to be 16pt, but my footer to be 8pt.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Jun 2019 16:17:56 GMT</pubDate>
    <dc:creator>arjessup</dc:creator>
    <dc:date>2019-06-18T16:17:56Z</dc:date>
    <item>
      <title>Fonts in PDF Proc Template</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566950#M22865</link>
      <description>&lt;P&gt;Is it possible to have a different font size for a title and a footnote when using ODS?&amp;nbsp; For example I want my title font to be 16pt, but my footer to be 8pt.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 16:17:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566950#M22865</guid>
      <dc:creator>arjessup</dc:creator>
      <dc:date>2019-06-18T16:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fonts in PDF Proc Template</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566954#M22866</link>
      <description>&lt;P&gt;Sure, you can easily customize these within the TITLE or FOOTNOTE statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title j=left
font= 'Times New Roman' color=blue bcolor=red "Student Data "
c=green bold italic "Growth Measurements";
&lt;BR /&gt;title2 j=center color=red underlin=1
height=28pt "2"
height=24pt "0"
height=20pt "1"
height=16pt "8";&lt;BR /&gt;
footnote j=left height=20pt
color=red "Prepared "
c='#FF9900' "on";&lt;BR /&gt;
footnote2 j=center color=blue
height=24pt "&amp;amp;sysdate9";
footnote3 link='http://support.sas.com/documentation' "SAS Documentation";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p10gcmrmf83iaxn1ilrx4pra969n.htm&amp;amp;locale=en#n0xbosn28veczdn1sr2l4m9lh9nn"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p10gcmrmf83iaxn1ilrx4pra969n.htm&amp;amp;locale=en#n0xbosn28veczdn1sr2l4m9lh9nn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202876"&gt;@arjessup&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Is it possible to have a different font size for a title and a footnote when using ODS?&amp;nbsp; For example I want my title font to be 16pt, but my footer to be 8pt.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 16:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566954#M22866</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-18T16:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Fonts in PDF Proc Template</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566981#M22869</link>
      <description>Sorry, I meant when using Proc Template. This is my code:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;define style styles.smaller;&lt;BR /&gt;parent = styles.printer;&lt;BR /&gt;class fonts from fonts / Reduce all sizes by 2pt&lt;BR /&gt;'TitleFont2' = ("Times",20pt,Bold Italic)&lt;BR /&gt;'TitleFont' = ("Times",20pt,Bold Italic)&lt;BR /&gt;'StrongFont' = ("Times",8pt,Bold)&lt;BR /&gt;'EmphasisFont' = ("Times",8pt,Italic)&lt;BR /&gt;'FixedEmphasisFont' = ("Courier New, Courier",7pt,Italic)&lt;BR /&gt;'FixedStrongFont' = ("Courier New, Courier",7pt,Bold)&lt;BR /&gt;'FixedHeadingFont' = ("Courier New, Courier",7pt,Bold)&lt;BR /&gt;'BatchFixedFont' = ("SAS Monospace, Courier New, Courier",5pt)&lt;BR /&gt;'FixedFont' = ("Courier New, Courier",7pt)&lt;BR /&gt;'headingEmphasisFont' = ("Times",9pt,Bold Italic)&lt;BR /&gt;'headingFont' = ("Times",9pt,Bold)&lt;BR /&gt;'docFont' = ("Times",8pt);&lt;BR /&gt;class Table from Output /&lt;BR /&gt;rules = ALL&lt;BR /&gt;cellpadding = 4pt Reduced from 4pt to 2pt&lt;BR /&gt;cellspacing = 0.25pt&lt;BR /&gt;borderwidth = 0.75pt;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Jun 2019 17:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/566981#M22869</guid>
      <dc:creator>arjessup</dc:creator>
      <dc:date>2019-06-18T17:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fonts in PDF Proc Template</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/567005#M22870</link>
      <description>&lt;P&gt;It's buried in the link but I think you can use SystemTitle, SystemTitle2-10 and systemFooter to get the fonts set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Style Element Names&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=odsproc&amp;amp;docsetTarget=p16od8jghibo9tn187hloazdzt70.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=odsproc&amp;amp;docsetTarget=p16od8jghibo9tn187hloazdzt70.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attributes&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=odsproc&amp;amp;docsetTarget=n0otdo2g12obp3n0zmnghcn7p4vu.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=odsproc&amp;amp;docsetTarget=n0otdo2g12obp3n0zmnghcn7p4vu.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202876"&gt;@arjessup&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Sorry, I meant when using Proc Template. This is my code:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;define style styles.smaller;&lt;BR /&gt;parent = styles.printer;&lt;BR /&gt;class fonts from fonts / Reduce all sizes by 2pt&lt;BR /&gt;'TitleFont2' = ("Times",20pt,Bold Italic)&lt;BR /&gt;'TitleFont' = ("Times",20pt,Bold Italic)&lt;BR /&gt;'StrongFont' = ("Times",8pt,Bold)&lt;BR /&gt;'EmphasisFont' = ("Times",8pt,Italic)&lt;BR /&gt;'FixedEmphasisFont' = ("Courier New, Courier",7pt,Italic)&lt;BR /&gt;'FixedStrongFont' = ("Courier New, Courier",7pt,Bold)&lt;BR /&gt;'FixedHeadingFont' = ("Courier New, Courier",7pt,Bold)&lt;BR /&gt;'BatchFixedFont' = ("SAS Monospace, Courier New, Courier",5pt)&lt;BR /&gt;'FixedFont' = ("Courier New, Courier",7pt)&lt;BR /&gt;'headingEmphasisFont' = ("Times",9pt,Bold Italic)&lt;BR /&gt;'headingFont' = ("Times",9pt,Bold)&lt;BR /&gt;'docFont' = ("Times",8pt);&lt;BR /&gt;class Table from Output /&lt;BR /&gt;rules = ALL&lt;BR /&gt;cellpadding = 4pt Reduced from 4pt to 2pt&lt;BR /&gt;cellspacing = 0.25pt&lt;BR /&gt;borderwidth = 0.75pt;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 18:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fonts-in-PDF-Proc-Template/m-p/567005#M22870</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-18T18:48:38Z</dc:date>
    </item>
  </channel>
</rss>

