<?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 SAS ODS RTF superscript size too small (v9.4) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-RTF-superscript-size-too-small-v9-4/m-p/463793#M20967</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using ^{super 1} embedded in variables, titles and column headers produces a superscript number that is very small.&amp;nbsp; The below post describes a method for increasing the superscript size in titles.&amp;nbsp; It works in footnotes and column labels, as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title1 "^{style[just=c font_size=14pt font_face=Courier]Heading}^{style [just=c font_size=12pt font_face=Courier]^{super a}}";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/Changing-font-size-of-superscript-characters/td-p/117633" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/Changing-font-size-of-superscript-characters/td-p/117633&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I could not find a way to change the font size if the superscript code is embedded in a variable.&amp;nbsp; Can this be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 21 May 2018 15:11:04 GMT</pubDate>
    <dc:creator>jdibber</dc:creator>
    <dc:date>2018-05-21T15:11:04Z</dc:date>
    <item>
      <title>SAS ODS RTF superscript size too small (v9.4)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-RTF-superscript-size-too-small-v9-4/m-p/463793#M20967</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using ^{super 1} embedded in variables, titles and column headers produces a superscript number that is very small.&amp;nbsp; The below post describes a method for increasing the superscript size in titles.&amp;nbsp; It works in footnotes and column labels, as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title1 "^{style[just=c font_size=14pt font_face=Courier]Heading}^{style [just=c font_size=12pt font_face=Courier]^{super a}}";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/Changing-font-size-of-superscript-characters/td-p/117633" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/Changing-font-size-of-superscript-characters/td-p/117633&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I could not find a way to change the font size if the superscript code is embedded in a variable.&amp;nbsp; Can this be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 21 May 2018 15:11:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-RTF-superscript-size-too-small-v9-4/m-p/463793#M20967</guid>
      <dc:creator>jdibber</dc:creator>
      <dc:date>2018-05-21T15:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS RTF superscript size too small (v9.4)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-RTF-superscript-size-too-small-v9-4/m-p/464178#M20969</link>
      <description>&lt;P&gt;Solution found...or so it seems&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To change font size of superscript embedded in a variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data rpt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var2 =&amp;nbsp;strip(var1)||"^S={fontsize=10pt}^{super 1}"; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;run ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To change font size of superscript in heading label and footnote in the proc report&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;proc report data=rpt ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;column var2 ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;define var2 / display style(column)=[just=center width=10%] &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;style(header)=[just=center] &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"Text^{style [fontsize=10pt]^{super 1}}" ; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;footnote j=l&amp;nbsp; "^{style [fontsize=10pt ]^{super 1}}Footnote text..." ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;run ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The table body font size is 8pt.&amp;nbsp; Increasing the superscript to 10pt slightly increases the line spacing b/t footnotes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 20:17:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-RTF-superscript-size-too-small-v9-4/m-p/464178#M20969</guid>
      <dc:creator>jdibber</dc:creator>
      <dc:date>2018-05-22T20:17:03Z</dc:date>
    </item>
  </channel>
</rss>

