<?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: insert ods escapechar syntax in a graph title in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25870#M748</link>
    <description>My apologies, I misspoke.  The SG procedures support the UNICODE function inline with the title (and other strings) but not super and sub.  You can get around this by specifying NOGTITLE on your ODS HTML statement.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
    <pubDate>Fri, 04 Dec 2009 17:21:58 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2009-12-04T17:21:58Z</dc:date>
    <item>
      <title>insert ods escapechar syntax in a graph title</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25868#M746</link>
      <description>Hello,&lt;BR /&gt;
if i submit the following code:&lt;BR /&gt;
ods escapechar="^";&lt;BR /&gt;
title " x^{super 3}";&lt;BR /&gt;
&lt;BR /&gt;
proc sgplot data=sashelp.class;&lt;BR /&gt;
scatter x= height y= weight;&lt;BR /&gt;
run;&lt;BR /&gt;
it's written in my log SUPER FUNCTION NOT DEFINED IN THIS TAGSET&lt;BR /&gt;
&lt;BR /&gt;
How can i do to define my super function to write my title as i want ?&lt;BR /&gt;
&lt;BR /&gt;
Thank you&lt;BR /&gt;
have a nice week end in few hours</description>
      <pubDate>Fri, 04 Dec 2009 14:43:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25868#M746</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-12-04T14:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: insert ods escapechar syntax in a graph title</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25869#M747</link>
      <description>Change SUPER to SUP and it should work for you.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
      <pubDate>Fri, 04 Dec 2009 15:13:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25869#M747</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2009-12-04T15:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: insert ods escapechar syntax in a graph title</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25870#M748</link>
      <description>My apologies, I misspoke.  The SG procedures support the UNICODE function inline with the title (and other strings) but not super and sub.  You can get around this by specifying NOGTITLE on your ODS HTML statement.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Dan</description>
      <pubDate>Fri, 04 Dec 2009 17:21:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25870#M748</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2009-12-04T17:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: insert ods escapechar syntax in a graph title</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25871#M749</link>
      <description>Hi:&lt;BR /&gt;
Here's an example that shows the way to use unicode characters for super/subscript in "classic" SAS/GRAPH and using SG procedures. (There are other ways with classic SAS/GRAPH to insert super/sub scripts with MOVE commands in the title, but these methods are much easier.) Refer to Windows Character Map or any other list of UNICODE characters to find out the values for other numbers. Note that many of the values for super/sub unicode characters start in the 20xx range and not the 00xx range.&lt;BR /&gt;
 &lt;BR /&gt;
Thanks, Dan for helping on  the SGPLOT example!&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
**1) Using Unicode font with hex characters in "classic SAS/GRAPH";&lt;BR /&gt;
ods html file='testuni_sasgraph92.html' style=analysis;&lt;BR /&gt;
                        &lt;BR /&gt;
title h=14pt 'superscript one' f='Arial Unicode MS/unicode'   '00B9'x;&lt;BR /&gt;
title3 h=14pt 'superscript three' f='Arial Unicode MS/unicode' '00B3'x;&lt;BR /&gt;
footnote "version: &amp;amp;sysvlong4";&lt;BR /&gt;
                        &lt;BR /&gt;
proc gplot data=sashelp.class;&lt;BR /&gt;
  plot height*weight;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
title; footnote;&lt;BR /&gt;
                                &lt;BR /&gt;
**2) Using UNICODE function with SG Procedures;&lt;BR /&gt;
ods html file='testuni_sgproc92.html' style=analysis;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
title h=14pt "superscript one ^{unicode '00B9'x}";&lt;BR /&gt;
title3 h=14pt "superscript three ^{unicode '00B3'x}";&lt;BR /&gt;
footnote "version: &amp;amp;sysvlong4";&lt;BR /&gt;
                                              &lt;BR /&gt;
proc sgplot data=sashelp.class;&lt;BR /&gt;
scatter x=height y=weight;&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
title; footnote;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 04 Dec 2009 21:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/insert-ods-escapechar-syntax-in-a-graph-title/m-p/25871#M749</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-12-04T21:05:42Z</dc:date>
    </item>
  </channel>
</rss>

