<?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 create a subscript of the infinity symbol? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738380#M230321</link>
    <description>&lt;P&gt;Thank you all for your reply.&amp;nbsp; I will try this out next time when I get to my computer.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recall I have done something similar!&amp;nbsp; I will test in out and let you know the result.&lt;/P&gt;&lt;P&gt;But I do recall since I have other text in front of the infinity symbol, my infinity symbol&amp;nbsp;&lt;/P&gt;&lt;P&gt;is small than the regular characters.&amp;nbsp; Is there somehow I can control its size?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any interesting result while I was experimenting.&amp;nbsp; I ended up copying the infinity symbol I got from&amp;nbsp;&lt;/P&gt;&lt;P&gt;an PDF output into my SAS program.&amp;nbsp; Guess what my new pdf output has for infinity symbol?&amp;nbsp; It turns 90 degree so that it became the number 8!&lt;/P&gt;</description>
    <pubDate>Sun, 02 May 2021 09:16:07 GMT</pubDate>
    <dc:creator>AliceCheng</dc:creator>
    <dc:date>2021-05-02T09:16:07Z</dc:date>
    <item>
      <title>How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738302#M230279</link>
      <description>&lt;P&gt;When doing PK studies, once time we have the PK parameter AUC (0-inf).&amp;nbsp; If I want to put '0-inf' in subscript after 'AUC' .&amp;nbsp; What code should I use?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If '$' is the escapechar, I understand that ${sub 0-inf} will put '0-inf' in subscript.&amp;nbsp; By searching, I found that ${Unicode 221E} will give you the infinity symbol.&amp;nbsp; But how can I get the infinity symbol in subscript?&amp;nbsp; What is the correct code to achieve that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 06:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738302#M230279</guid>
      <dc:creator>AliceCheng</dc:creator>
      <dc:date>2021-05-01T06:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738314#M230283</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just curious: what do you mean with PK. Is it P&lt;SPAN style="font-family: inherit;"&gt;harmacoKinetics?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;To answer your question, here's an example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nodate nonumber;
ods html close;
ods escapechar="^";
ods rtf file="rtfInlinFuncs.rtf";

title "Example of SUB, SIGMA ^{unicode 221E} Function";
proc print data=sashelp.class(obs=4);
run;
ods _all_ close;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;But maybe you want the infinity symbol in the body of a report or in a graph / plot. That may complicate things.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;If so, please provide the community with your trial code and things will be corrected where needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 10:31:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738314#M230283</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-05-01T10:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738315#M230284</link>
      <description>&lt;P&gt;I am sorry, I forgot to use the SUB function&amp;nbsp;that can be used with ODS ESCAPECHAR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is better code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nodate nonumber;
ods html close;
ods escapechar="^";
ods rtf file="rtfInlinFuncs.rtf";

title "Example of SUB, SIGMA ^{sub ^{unicode 221E}} Function";
proc print data=sashelp.class(obs=4);
run;
ods _all_ close;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 10:41:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738315#M230284</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-05-01T10:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738316#M230285</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';
title "Example of SUB, SIGMA^{sub 0-^{unicode 221E}}  Function";
proc print data=sashelp.class(obs=4);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 01 May 2021 10:42:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738316#M230285</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-05-01T10:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738380#M230321</link>
      <description>&lt;P&gt;Thank you all for your reply.&amp;nbsp; I will try this out next time when I get to my computer.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recall I have done something similar!&amp;nbsp; I will test in out and let you know the result.&lt;/P&gt;&lt;P&gt;But I do recall since I have other text in front of the infinity symbol, my infinity symbol&amp;nbsp;&lt;/P&gt;&lt;P&gt;is small than the regular characters.&amp;nbsp; Is there somehow I can control its size?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any interesting result while I was experimenting.&amp;nbsp; I ended up copying the infinity symbol I got from&amp;nbsp;&lt;/P&gt;&lt;P&gt;an PDF output into my SAS program.&amp;nbsp; Guess what my new pdf output has for infinity symbol?&amp;nbsp; It turns 90 degree so that it became the number 8!&lt;/P&gt;</description>
      <pubDate>Sun, 02 May 2021 09:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738380#M230321</guid>
      <dc:creator>AliceCheng</dc:creator>
      <dc:date>2021-05-02T09:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738391#M230332</link>
      <description>&lt;P&gt;"my infinity symbol&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is small than the regular characters.&amp;nbsp; Is there somehow I can control its size?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes. You are right ,try this to adjust font size .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';
title "Example of SUB, SIGMA^{sub 0 -^{style [fontsize=4] ^{unicode 221E}}}  Function";
proc print data=sashelp.class(obs=4);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 02 May 2021 12:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738391#M230332</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-05-02T12:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738715#M230470</link>
      <description>&lt;P&gt;Hi, KSharp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Thank you very much for your answer.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I adjusted the code a bit.&amp;nbsp; Here is what I end up using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;iPARAML='AUC${sub ${style [fontsize=0.8]0}${style [fontsize=1.0]-}${style [fontsize=1.0] ${unicode 221E}}}';&lt;/P&gt;&lt;P&gt;And my output looks like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AliceCheng_0-1620075983740.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58987i857C818F75C6341F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AliceCheng_0-1620075983740.png" alt="AliceCheng_0-1620075983740.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there some way I can adjust so that the subscript goes lower?&lt;/P&gt;&lt;P&gt;This works fine in PDF and HTML, but I can hardly see any subscript by this method in RTF.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your response.&amp;nbsp; I really appreciated.&amp;nbsp; If you have additional suggestion, please do reply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 21:08:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738715#M230470</guid>
      <dc:creator>AliceCheng</dc:creator>
      <dc:date>2021-05-03T21:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a subscript of the infinity symbol?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738822#M230515</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; may know more than me .&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 09:29:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-subscript-of-the-infinity-symbol/m-p/738822#M230515</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-05-04T09:29:43Z</dc:date>
    </item>
  </channel>
</rss>

