<?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 ods text issue in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780320#M248630</link>
    <description>&lt;P&gt;I am preparing a figure and it has title.&amp;nbsp; I do not want to use TITLE statement, because I do not want the text and figure merged together.&lt;/P&gt;
&lt;P&gt;So I used ods text to output text, like below.&amp;nbsp; I want "company name" is at left,&amp;nbsp; "study" is at center and "Protocol" is at right. H&lt;FONT face="inherit"&gt;owever the text can not be adjusted properly.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="inherit"&gt; If I used TITLE statement,&amp;nbsp; the text&amp;nbsp; could be very easily &lt;/FONT&gt;adjusted&lt;FONT face="inherit"&gt;. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="inherit"&gt;Can someone help me out? Eigher to adjust the text with ods text, or to use title but to separate the text and figure. Thanks in advance.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods text="^S={just=l}company name ^S={just=c}study ^S={just=r} Protocol";&lt;/P&gt;
&lt;P&gt;title j=l "Company name" j=c "Study" j=r "Protocol";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Nov 2021 01:42:27 GMT</pubDate>
    <dc:creator>Niugg2010</dc:creator>
    <dc:date>2021-11-16T01:42:27Z</dc:date>
    <item>
      <title>ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780320#M248630</link>
      <description>&lt;P&gt;I am preparing a figure and it has title.&amp;nbsp; I do not want to use TITLE statement, because I do not want the text and figure merged together.&lt;/P&gt;
&lt;P&gt;So I used ods text to output text, like below.&amp;nbsp; I want "company name" is at left,&amp;nbsp; "study" is at center and "Protocol" is at right. H&lt;FONT face="inherit"&gt;owever the text can not be adjusted properly.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="inherit"&gt; If I used TITLE statement,&amp;nbsp; the text&amp;nbsp; could be very easily &lt;/FONT&gt;adjusted&lt;FONT face="inherit"&gt;. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="inherit"&gt;Can someone help me out? Eigher to adjust the text with ods text, or to use title but to separate the text and figure. Thanks in advance.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods text="^S={just=l}company name ^S={just=c}study ^S={just=r} Protocol";&lt;/P&gt;
&lt;P&gt;title j=l "Company name" j=c "Study" j=r "Protocol";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 01:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780320#M248630</guid>
      <dc:creator>Niugg2010</dc:creator>
      <dc:date>2021-11-16T01:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780321#M248631</link>
      <description>I forgot to mention that I outputted the figure and text in rtf file.</description>
      <pubDate>Tue, 16 Nov 2021 01:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780321#M248631</guid>
      <dc:creator>Niugg2010</dc:creator>
      <dc:date>2021-11-16T01:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780355#M248639</link>
      <description>&lt;P&gt;ODS Text is not very bright and you have to take control of a great many things. You might try setting the WIDTH of the output to 100% of the page width. Without a known width the Ods Text processor doesn't understand that you want to use the whole width of the page. I don't have access to code currently where I have done this in the past but I think I used something like Width=8in in the first of the Style options. 8in = 8 inches, and should match your margin settings. You need to make sure it affects the whole string, use (), otherwise the first value may get the entire width.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that you are currently getting the 3 items with basically just a space between them if I remember correctly from working through this a while ago.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 07:36:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780355#M248639</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-11-16T07:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780398#M248663</link>
      <description>&lt;P&gt;You need NOGTITLE option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.rtf file='c:\temp\temp.rtf' nogtitle   style=journal ;
proc sgplot data=sashelp.class;
title j=l "Company name" j=c "Study" j=r "Protocol";
   scatter y=height x=weight / group=sex;
   xaxis label= "Females are second in the data  set and legend.";
run;
ods tagsets.rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Nov 2021 11:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780398#M248663</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-16T11:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780424#M248680</link>
      <description>Ballardw,  I tried to set width in style, it does not work.  Anyway, Thank you for your help.</description>
      <pubDate>Tue, 16 Nov 2021 13:55:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780424#M248680</guid>
      <dc:creator>Niugg2010</dc:creator>
      <dc:date>2021-11-16T13:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: ods text issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780425#M248681</link>
      <description>Ksharp, Thank you very much. It works, not only for ods tagsets.rtf, also it works for ods rtf.</description>
      <pubDate>Tue, 16 Nov 2021 13:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-text-issue/m-p/780425#M248681</guid>
      <dc:creator>Niugg2010</dc:creator>
      <dc:date>2021-11-16T13:56:09Z</dc:date>
    </item>
  </channel>
</rss>

