<?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: PDF Font size increase in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/494020#M21659</link>
    <description>&lt;P&gt;1. &amp;nbsp; Can you please send an example?&amp;nbsp; I want to make it to a 12 point Arial style.&amp;nbsp; I'm not good with fonts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. &amp;nbsp;&amp;nbsp;How would I make this to a&amp;nbsp; RTF file with Arial 12 font? &amp;nbsp;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; RTF can just be copied and pasted, yes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. Marysia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods pdf file="C:\sas\a_study\mao\new_sept_18\Case5Means.pdf" style = minimal;&lt;BR /&gt;data no;&lt;BR /&gt;set pones4;&lt;BR /&gt;if c5=0;&lt;BR /&gt;proc means n mean stderr min max range;&lt;BR /&gt;var final5case_percent&lt;BR /&gt;title 'Descriptive Stats for c5=0 Among pgys 1 = Did NOT undergo Case5'&lt;BR /&gt;title2 ' Checked normality- skew and kurt is fine';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data yes;&lt;BR /&gt;set pones4;&lt;BR /&gt;if c5=1;&lt;BR /&gt;proc means n mean stderr min max range;&lt;BR /&gt;var final5case_percent ;&lt;BR /&gt;title 'Descriptive Stats for c5=1 Among pgys 1= DID undergo Case5'&lt;BR /&gt;title2 ' Checked normality- skew and kurt is super';&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Sep 2018 06:49:15 GMT</pubDate>
    <dc:creator>mgrzyb</dc:creator>
    <dc:date>2018-09-10T06:49:15Z</dc:date>
    <item>
      <title>PDF Font size increase</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/2560#M1100</link>
      <description>Hi Friends,&lt;BR /&gt;
&lt;BR /&gt;
The below code is working well. But the font size in the PDF file is too small. Please tell me how to increase the size of the font.&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file=pdfout startpage=now; &lt;BR /&gt;
data _null_; &lt;BR /&gt;
file print; &lt;BR /&gt;
set cdhcpgrep; &lt;BR /&gt;
format mon $month.; &lt;BR /&gt;
title ' CDHCPG Report'; &lt;BR /&gt;
put mon y2ddol y2dpct y1ddol y1dpct; &lt;BR /&gt;
run;</description>
      <pubDate>Wed, 21 Mar 2007 12:54:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/2560#M1100</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T12:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: PDF Font size increase</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/2561#M1101</link>
      <description>Using Proc template you can modify the font sizes of the output.  I didn't know what version of SAS you were using so I wrote and tested this in 9.1.  If you need a earlier version let me know.&lt;BR /&gt;
&lt;BR /&gt;
To change the font of the data inside a Data Null you have to change the BatchFixedFont setting.  I've changed it to 12pt from the initial default of 6.7pt.  Try this and see if this helps.&lt;BR /&gt;
&lt;BR /&gt;
Scott&lt;BR /&gt;
&lt;BR /&gt;
sample program...&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define style Styles.biggerfont;&lt;BR /&gt;
parent = Styles.printer;&lt;BR /&gt;
      replace fonts /                                                         &lt;BR /&gt;
         'TitleFont2' = ("Times Roman",12pt,Bold Italic)                      &lt;BR /&gt;
         'TitleFont' = ("Times Roman",13pt,Bold Italic)                       &lt;BR /&gt;
         'StrongFont' = ("Times Roman",10pt,Bold)                             &lt;BR /&gt;
         'EmphasisFont' = ("Times Roman",10pt,Italic)                         &lt;BR /&gt;
         'FixedEmphasisFont' = ("Courier",9pt,Italic)                         &lt;BR /&gt;
         'FixedStrongFont' = ("Courier",9pt,Bold)                             &lt;BR /&gt;
         'FixedHeadingFont' = ("Courier",9pt,Bold)                            &lt;BR /&gt;
         'BatchFixedFont' = ("SAS Monospace, Courier",12pt)                  &lt;BR /&gt;
         'FixedFont' = ("Courier",9pt)                                        &lt;BR /&gt;
         'headingEmphasisFont' = ("Times Roman",11pt,Bold Italic)             &lt;BR /&gt;
         'headingFont' = ("Times Roman",11pt,Bold)                            &lt;BR /&gt;
         'docFont' = ("Times Roman",10pt);&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
ods pdf file='pdfout.pdf' style=Styles.biggerfont;&lt;BR /&gt;
data _null_;&lt;BR /&gt;
file print;&lt;BR /&gt;
set sashelp.class;&lt;BR /&gt;
title ' Big Fonts Report';&lt;BR /&gt;
put age sex name;&lt;BR /&gt;
run; &lt;BR /&gt;
ods pdf close;</description>
      <pubDate>Wed, 21 Mar 2007 18:39:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/2561#M1101</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2007-03-21T18:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: PDF Font size increase</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/494020#M21659</link>
      <description>&lt;P&gt;1. &amp;nbsp; Can you please send an example?&amp;nbsp; I want to make it to a 12 point Arial style.&amp;nbsp; I'm not good with fonts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. &amp;nbsp;&amp;nbsp;How would I make this to a&amp;nbsp; RTF file with Arial 12 font? &amp;nbsp;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; RTF can just be copied and pasted, yes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. Marysia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods pdf file="C:\sas\a_study\mao\new_sept_18\Case5Means.pdf" style = minimal;&lt;BR /&gt;data no;&lt;BR /&gt;set pones4;&lt;BR /&gt;if c5=0;&lt;BR /&gt;proc means n mean stderr min max range;&lt;BR /&gt;var final5case_percent&lt;BR /&gt;title 'Descriptive Stats for c5=0 Among pgys 1 = Did NOT undergo Case5'&lt;BR /&gt;title2 ' Checked normality- skew and kurt is fine';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data yes;&lt;BR /&gt;set pones4;&lt;BR /&gt;if c5=1;&lt;BR /&gt;proc means n mean stderr min max range;&lt;BR /&gt;var final5case_percent ;&lt;BR /&gt;title 'Descriptive Stats for c5=1 Among pgys 1= DID undergo Case5'&lt;BR /&gt;title2 ' Checked normality- skew and kurt is super';&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 06:49:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PDF-Font-size-increase/m-p/494020#M21659</guid>
      <dc:creator>mgrzyb</dc:creator>
      <dc:date>2018-09-10T06:49:15Z</dc:date>
    </item>
  </channel>
</rss>

