<?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 output pretext without table frame using ods tagsets.rtf? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892337#M352437</link>
    <description>&lt;P&gt;The option you want would be Options(tables_off='&amp;lt;one or more of the locations&amp;gt;') on the ODS TAGSETS.RTF statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look in the documentation of TAGSETS.RTF for the locations. I think you may want 'usertext' in this case. Maybe. I am not sure which style element that PRETEXT goes into as the general ODS documentation gets hard to trace down all such. So it might be&amp;nbsp; something else like 'NoteBanner'&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;ods tagsets.rtf file='test.rtf' style=threeline startpage=no options(tables_off='usertext');&lt;/LI-CODE&gt;
&lt;P&gt;Note, when you&amp;nbsp; use custom style, such as your STYLE=THREELINES in your ODS destination you should be prepared to include the definition of that style as we have no way of telling what the impact of that style may be having on any appearance related questions.&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 15:26:55 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-09-01T15:26:55Z</dc:date>
    <item>
      <title>How to output pretext without table frame using ods tagsets.rtf?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892230#M352413</link>
      <description>&lt;P&gt;I am planing to use ods tagsets.rtf to replace ods rtf in my work gradually. Just meet the problem at the very first day:&amp;nbsp;how to output pretext without table frame using ods tagsets.rtf, just like ods rtf?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.jpg" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87494iEA13D9FB9469DC25/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.jpg" alt="1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The test code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option nodate nonumber;
title;
footnote;

ods tagsets.rtf file='test.rtf' style=threeline startpage=no;
proc report data=sashelp.class nowd 
  style(report)={pretext='Title'} style(report)={posttext='Footnote'};
run;
ods tagsets.rtf close;

ods rtf file='test2.rtf' style=threeline startpage=no;
proc report data=sashelp.class nowd 
  style(report)={pretext='Title'} style(report)={posttext='Footnote'};
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Sep 2023 09:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892230#M352413</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2023-09-01T09:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to output pretext without table frame using ods tagsets.rtf?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892231#M352414</link>
      <description>As you can see, the output pretext of ods tagsets.rtf is located at a table, I don't want that, I want to remove the table frame of pretext, just like ods rtf does.&lt;BR /&gt;Thank you for any hints.</description>
      <pubDate>Fri, 01 Sep 2023 09:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892231#M352414</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2023-09-01T09:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to output pretext without table frame using ods tagsets.rtf?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892337#M352437</link>
      <description>&lt;P&gt;The option you want would be Options(tables_off='&amp;lt;one or more of the locations&amp;gt;') on the ODS TAGSETS.RTF statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look in the documentation of TAGSETS.RTF for the locations. I think you may want 'usertext' in this case. Maybe. I am not sure which style element that PRETEXT goes into as the general ODS documentation gets hard to trace down all such. So it might be&amp;nbsp; something else like 'NoteBanner'&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;ods tagsets.rtf file='test.rtf' style=threeline startpage=no options(tables_off='usertext');&lt;/LI-CODE&gt;
&lt;P&gt;Note, when you&amp;nbsp; use custom style, such as your STYLE=THREELINES in your ODS destination you should be prepared to include the definition of that style as we have no way of telling what the impact of that style may be having on any appearance related questions.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 15:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892337#M352437</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-09-01T15:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to output pretext without table frame using ods tagsets.rtf?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892668#M352585</link>
      <description>&lt;P&gt;Thank you, that is really what I want. I also add vspace="no" option to compress extra empty lines. The definition of style THREELINE that I used is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
  define style Styles.Threeline;
    parent = styles.rtf;
    style fonts /
      'docFont' = ("times new roman",10.5pt)
      'FixedFont' = ("times new roman",10.5pt)
      'FootFont' = ("times new roman",10.5pt)
      'headingFont' = ("times new roman",10.5pt)
      'headingEmphasisFont' = ("times new roman",10.5pt)
      'BatchFixedFont' = ("times new roman",10.5pt)
      'FixedHeadingFont' = ("times new roman",10.5pt)
      'FixedStrongFont' = ("times new roman",10.5pt)
      'FixedEmphasisFont' = ("times new roman",10.5pt)
      'EmphasisFont' = ("times new roman",10.5pt)
      'StrongFont' = ("times new roman",10.5pt)
      'TitleFont2' = ("times new roman",10.5pt)
      'TitleFont' = ("times new roman",10.5pt);
    style header /
      asis = on
      textalign = center
      fontsize = 10.5pt
      fontfamily = "times new roman"
      backgroundcolor = white;
    style Body from Document /
      marginleft = 1.5cm
      marginright = 1.5cm
      margintop = 1.5cm
      marginbottom = 1.5cm;
    style table from table /
      cellpadding = 0.5pt
      borderspacing = 0pt
      rules = groups
      frame = hsides
      width = 100%;
  end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thank you for reminding me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 02:40:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-pretext-without-table-frame-using-ods-tagsets-rtf/m-p/892668#M352585</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2023-09-05T02:40:58Z</dc:date>
    </item>
  </channel>
</rss>

