<?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: Removing line break/vertical spaces between procs when using ods rtf in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/650349#M24118</link>
    <description>Ok, thank you. Indeed, it is working using ODS TAGSETS.RTF. But some of my other options are not working now. I'll have to make choices...</description>
    <pubDate>Mon, 25 May 2020 05:54:26 GMT</pubDate>
    <dc:creator>audreybr</dc:creator>
    <dc:date>2020-05-25T05:54:26Z</dc:date>
    <item>
      <title>Removing line break/vertical spaces between procs when using ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/649095#M24102</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to have more control on my rtf output, by removing if possible line breaks that appear automatically between two proc&amp;nbsp; (in my example proc odstext, and proclist)&lt;/P&gt;&lt;P&gt;Here is my code:&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.Custom; parent = Styles.Printer;
replace fonts /
'TitleFont' = ("Arial-BoldMT",13pt,Bold Italic) 
'TitleFont2' = ("Arial-BoldMT",12pt,Bold Italic) 
'EmphasisFont' = ("Arial",10pt,Italic)
'headingEmphasisFont' = ("Arial",11pt,Bold Italic)
'headingFont' = ("Arial",11pt,Bold) 
'docFont' = ("Arial",10pt) 
'footFont' = ("Arial",13pt) 
'FixedEmphasisFont' = ("Courier",9pt,Italic)
'FixedStrongFont' = ("Courier",9pt,Bold)
'FixedHeadingFont' = ("Courier",9pt,Bold)
'BatchFixedFont' = ("Courier",6.7pt)
'FixedFont' = ("Courier",9pt);
replace color_list /
'link' = blue 
'bgH' = vligb 
'bgT' = white 
'bgD' = white 
'fg' = black 
'bg' = white;
replace GraphFonts /
'GraphDataFont' = ("Arial",8pt)
'GraphUnicodeFont' = ("Arial",9pt)
'GraphValueFont' = ("Arial",10pt)
'GraphLabelFont' = ("Arial",11pt,bold)
'GraphFootnoteFont' = ("Arial",11pt,bold)
'GraphTitleFont' = ("Arial",12pt,bold)
'GraphAnnoFont' = ("Arial",10pt);
replace Table from Output /
frame = hsides
rules = none 
cellpadding = 4pt 
cellspacing = 0.25pt
borderwidth = 0.75pt ;
* Leave code below this line alone ;
style parskip / fontsize=1pt;
style SystemFooter from SystemFooter / font = fonts("footFont");
style Data from Data / background=color_list('bgD');
class UserText / font_size=10pt;
style paragraph from UserText "Controls the TEXT= style" /
outputwidth=100% 
protectspecialchars=off;
class body /topmargin = 0.75in
leftmargin = 0.75in
rightmargin = 0.75in
bottommargin=0.75in
outputwidth=100% ;
end;
run;
options compress=yes
nodate
nonumber
center
orientation=portrait;
ods escapechar='^';
ods rtf
file="&amp;amp;path\Résultats\tableaux\test.rtf"
bodytitle style=styles.custom startpage=no keepn style = Custom NOGTITLE nogfootnote
notoc_data ;

proc odstext;
p "Rédacteurs :";
run;
proc odslist;
item "^S={fontsize=10pt color=black}M ...." / style={liststyletype="diamond" color=blue fontsize=7pt};
item "blabla" / style={liststyletype="none" };
item "^S={fontsize=10pt color=black}M. ..." / style={liststyletype="diamond" color=blue fontsize=7pt};
item "blabla" / style={liststyletype="none" };
end;
proc odstext;
p "Relecteurs ";
run;

ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 May 2020 06:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/649095#M24102</guid>
      <dc:creator>audreybr</dc:creator>
      <dc:date>2020-05-20T06:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Removing line break/vertical spaces between procs when using ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/649218#M24103</link>
      <description>&lt;P&gt;You can try using ODS TAGSETS.RTF instead of RTF. Most of the options are similar but the TAGSET has additional options.&amp;nbsp; What you would add to your ods tagsets.rtf would be an OPTIONS section that would look like:&lt;/P&gt;
&lt;P&gt;ods tagsets.rtf file="&amp;lt;path&amp;gt;\filename.rtf" Options( Vspace='OFF' ) ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be advised that since basically all the output is a table you may end up with some appearance that you don't want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 13:39:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/649218#M24103</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-20T13:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Removing line break/vertical spaces between procs when using ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/650349#M24118</link>
      <description>Ok, thank you. Indeed, it is working using ODS TAGSETS.RTF. But some of my other options are not working now. I'll have to make choices...</description>
      <pubDate>Mon, 25 May 2020 05:54:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Removing-line-break-vertical-spaces-between-procs-when-using-ods/m-p/650349#M24118</guid>
      <dc:creator>audreybr</dc:creator>
      <dc:date>2020-05-25T05:54:26Z</dc:date>
    </item>
  </channel>
</rss>

