<?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: How to add both a subscript and a superscript to a variable in ods rtf text? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422583#M20064</link>
    <description>&lt;P&gt;Cynthia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your advice and the information you have provided is greatly appreciated.&amp;nbsp;I&amp;nbsp;recently took the Report Writing 1 class and that provided a solid foundation for me to build off of, but&amp;nbsp;I am still learning all of these&amp;nbsp;very specific styling attributes through various sources.&amp;nbsp;Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Wed, 20 Dec 2017 03:08:07 GMT</pubDate>
    <dc:creator>chjones</dc:creator>
    <dc:date>2017-12-20T03:08:07Z</dc:date>
    <item>
      <title>How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/403353#M19585</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to get both a subscript and a superscript onto a Unicode variable sigma.&amp;nbsp; The sigma is irrelevant in this question, but I am curious how to add both a subscript and a superscript to the same character.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;escapechar&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'^'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;p^{sub e(w)}&amp;nbsp;&amp;nbsp; &amp;lt;-this creates my p subscript e(w)&lt;/P&gt;&lt;P&gt;p^{super 2}&amp;nbsp;&amp;nbsp; &amp;lt;-this creates my p superscript 2&amp;nbsp;(or square)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I have these both placed on the same variable?&amp;nbsp; I've tried combining them as follows:&lt;/P&gt;&lt;P&gt;p^{sub e(w)}^{super 2}&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;- I've tried this and many variations, but have not been successful in getting a result that looks correct. There are always gaps or spacing issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking/hoping there is a command that handles this, but I have not been able to come across it yet.&amp;nbsp; Any ideas/thoughts/solutions are greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2017 20:24:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/403353#M19585</guid>
      <dc:creator>chjones</dc:creator>
      <dc:date>2017-10-11T20:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421747#M20038</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Have you tried this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';
ods html file='c:\temp\supersub.html';

title '^{unicode sigma}^{sub e(w)}^{super 1}';
proc print data=sashelp.class(obs=2);
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Edit: adding other replies for a more complete solution:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp; I assume you mean something like this:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisHemedinger_0-1749658013654.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/107747iF6F106B0F3A9E6B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisHemedinger_0-1749658013654.png" alt="ChrisHemedinger_0-1749658013654.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the unicode symbol 221A for the square root and then textdecoration=overline to put a line above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi, by vertical fractions, I assume you mean the one I typed into the Word equation editor in this screen shot:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisHemedinger_1-1749658081300.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/107748i17EA0E2F52F45459/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisHemedinger_1-1749658081300.png" alt="ChrisHemedinger_1-1749658081300.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know of a way to do the first type of fraction with one number above the other. The UNICODE symbols for fractions seem to be the standard 1/4, 1/2, 1/8, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; We teach a lot about style attributes in our Report Writing 1 class, which focuses on ODS, PROC REPORT and PROC TABULATE. Or you could look for user-group papers that discuss style attributes. The PROC TEMPLATE documentation has a comprehensive list of style attributes, but it is fairly dense. Searching on the forum might help. I learned about textdecoration from reading this paper:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www2.sas.com/proceedings/sugi31/227-31.pdf" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www2.sas.com/proceedings/sugi31/227-31.pdf&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and even though it was written for version 9.2 of SAS, it is still a very good paper.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 11 Jun 2025 16:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421747#M20038</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2025-06-11T16:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421824#M20039</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran your code and got a result that left a space between the sigma character and the superscript, because of the width of the intervening subscript.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know if the OP intended this, but are you aware of any expression that&amp;nbsp;can place both the superscript and&amp;nbsp;subscript to be adjacent&amp;nbsp;to the main character?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 04:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421824#M20039</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-12-17T04:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421846#M20040</link>
      <description>&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the reply.&amp;nbsp; Yes, I have tried that, but as Mkeintz has suggested, it leaves an unwanted space.&amp;nbsp; Ideally, I would like for the subscript and the superscript to be directly adjacent to the sigma.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution that I came up with was to create the equations in an equation editor such as MathType and save them as .png files.&amp;nbsp; Then I could insert the .png into the text of the report when necessary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another question I have is whether or not we can expand the radical sign so that an equation fits under the radical.&amp;nbsp; I followed the exact procedure above to accomplish this as well, but it would be much simpler if SAS had a way to accomplish this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, thank you for the reply and please let me know if you have any info on expanding the radical as well.&amp;nbsp; If not, no biggie.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 15:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421846#M20040</guid>
      <dc:creator>chjones</dc:creator>
      <dc:date>2017-12-17T15:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421850#M20041</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; To me that is a question for Tech Support. SAS is just sending instructions to the browser or other destination. The superscripts and subscripts are being rendered by the browser or Word or PDF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; When I just type in Word, here's what I get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="word_super_sub.png" style="width: 571px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17351i23FE100596E40D5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="word_super_sub.png" alt="word_super_sub.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;To my eye, the 1 in the bottom 2 lines looks slightly farther than the 1 in the first line. But I typed them all the same way, in the same font and then used Word controls to do the super/sub.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And, when I use SAS with different scenarios, this is what I see:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="super_sub.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17352i7CAE779F3BFD04E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="super_sub.png" alt="super_sub.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So, again, the 1 in the 3rd and a5th lines looks "closer" than the superscript 1 in the other lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But what SAS sent to the HTML to be rendered in the browser is this:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="what_in_html.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17353i685B3BAC471C334D/image-size/large?v=v2&amp;amp;px=999" role="button" title="what_in_html.png" alt="what_in_html.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and, as you can see, where I've highlighted, SAS sent exactly the same HTML commands for every superscript 1. So I suspect that this is a rendering issue -- having to do with fonts and browsers. If I send the exact same code to RTF, then in Word, the header looks like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="same_code_to_Word.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17354i7E19140A1E1CD45F/image-size/large?v=v2&amp;amp;px=999" role="button" title="same_code_to_Word.png" alt="same_code_to_Word.png" /&gt;&lt;/span&gt; &lt;/P&gt;
&lt;P&gt;...which is why I suspect this is a rendering issue and I don't know that there's anything you can do at the SAS side of things to impact the rendering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 15:42:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421850#M20041</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-12-17T15:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421864#M20042</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I assume you mean something like this: &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="square_root.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17355i04CD00304D41D670/image-size/large?v=v2&amp;amp;px=999" role="button" title="square_root.png" alt="square_root.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I used the unicode symbol 221A for the square root and then textdecoration=overline to put a line above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 18:37:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421864#M20042</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-12-17T18:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421884#M20043</link>
      <description>&lt;P&gt;In response to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;, this is what I had in mind.&amp;nbsp; I produced it in Word using the equation editor.&amp;nbsp; What you see below is the word doc saved to an htm file and converted to png for upload.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I was hoping for is a way to "trick" SAS into sending code to produce this result, even though I am&amp;nbsp;of the opinion that it's not currently there to be found.&amp;nbsp; (In short, in addition to the &lt;EM&gt;&lt;STRONG&gt;^{sub e(w)}&lt;/STRONG&gt;&lt;/EM&gt; and &lt;EM&gt;&lt;STRONG&gt;^{super 2}&lt;/STRONG&gt;&lt;/EM&gt; directives,&amp;nbsp;what I'd like is a &lt;STRONG&gt;&lt;EM&gt;^{supersub 2;e(w)}&lt;/EM&gt;&lt;/STRONG&gt; directive.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if there were some sort of backspace directive implementable between the sub and super, one might produce this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="σew2.png" style="width: 73px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17365iA813167AF67C2DDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="σew2.png" alt="σew2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 21:21:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/421884#M20043</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-12-17T21:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422405#M20059</link>
      <description>&lt;P&gt;Wow, that is perfect!&amp;nbsp; One last question, would you happen to know how to create a fraction, vertically not horizontally (if that makes sense)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or would you be able to point me to a source where I can learn more about options like textdecoration?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 17:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422405#M20059</guid>
      <dc:creator>chjones</dc:creator>
      <dc:date>2017-12-19T17:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422571#M20063</link>
      <description>&lt;P&gt;Hi, by vertical fractions, I assume you mean the one I typed into the Word equation editor in this screen shot:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fractions.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17426iFEC64741FE3F2ADF/image-size/large?v=v2&amp;amp;px=999" role="button" title="fractions.png" alt="fractions.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know of a way to do the first type of fraction with one number above the other. The UNICODE symbols for fractions seem to be the standard 1/4, 1/2, 1/8, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; We teach a lot about style attributes in our Report Writing 1 class, which focuses on ODS, PROC REPORT and PROC TABULATE. Or you could look for user-group papers that discuss style attributes. The PROC TEMPLATE documentation has a comprehensive list of style attributes, but it is fairly dense. Searching on the forum might help. I learned about textdecoration from reading this paper: &lt;A href="http://www2.sas.com/proceedings/sugi31/227-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/227-31.pdf&lt;/A&gt; and even though it was written for version 9.2 of SAS, it is still a very good paper.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 02:05:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422571#M20063</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-12-20T02:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to add both a subscript and a superscript to a variable in ods rtf text?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422583#M20064</link>
      <description>&lt;P&gt;Cynthia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your advice and the information you have provided is greatly appreciated.&amp;nbsp;I&amp;nbsp;recently took the Report Writing 1 class and that provided a solid foundation for me to build off of, but&amp;nbsp;I am still learning all of these&amp;nbsp;very specific styling attributes through various sources.&amp;nbsp;Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 03:08:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-add-both-a-subscript-and-a-superscript-to-a-variable-in/m-p/422583#M20064</guid>
      <dc:creator>chjones</dc:creator>
      <dc:date>2017-12-20T03:08:07Z</dc:date>
    </item>
  </channel>
</rss>

