<?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: Adjust title and blank between graphs in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adjust-title-and-blank-between-graphs/m-p/230257#M14518</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I understand, titles and footnotes are supposed to be printed only once per page. I have used tagsets.rtf with an "ods text" statement above the chart instead of title statements to achieve several text formatted as titles on a single page, see code below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nocenter;
goptions device=ACTXIMG;
title;
footnote;

ods tagsets.rtf file='c:\Test.rtf';

ods escapechar="^";
ods text="^S={font_face='Arial Black' font_size=12pt}This is text that looks like a title";

proc sgplot data=sashelp.cars;
 vbar cylinders;
run;

ods text="^S={font_face='Arial Black' font_size=12pt}This is another text that looks like a title";

proc gchart data=sashelp.cars;
 vbar cylinders;
run;

ods text="^S={font_face='Arial Black' font_size=12pt}This is yet another text that looks like a title";

proc tabulate data=sashelp.cars;
 class make cylinders;
 table make, cylinders ;
run;

ods tagsets.rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 16 Oct 2015 10:49:24 GMT</pubDate>
    <dc:creator>jb3</dc:creator>
    <dc:date>2015-10-16T10:49:24Z</dc:date>
    <item>
      <title>Adjust title and blank between graphs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adjust-title-and-blank-between-graphs/m-p/230039#M14495</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It have&amp;nbsp;tried thousand solutions just to have a beautiful report not such as this: &lt;A href="http://image.noelshack.com/fichiers/2015/42/1444900751-picture.jpg" target="_self"&gt;http://image.noelshack.com/fichiers/2015/42/1444900751-picture.jpg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see there are huge blanks between sentences/tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I changed first the parskip style in the template&amp;nbsp;such as:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; style parskip / fontsize = 10pt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that with bodytitle option, it does not work and if I don't specify bodytitle, yes, it works but&amp;nbsp;even graphs or pictures can be include&amp;nbsp;into header sections of a word document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I tried tagsets.rtf. It works but I can't have multiple titles on the same page for a table, it is to say that if I use &lt;STRONG&gt;proc print&lt;/STRONG&gt; with a title inside, it appears, but if there are others tables with a title inside on the same page, they do not appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course, I can write my titles like&amp;nbsp;data in a&amp;nbsp;table but sometimes my tables do not appear (it is for a quality control rapport) so I do not need a title if there is no data tables to display.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you got any idea to solve my problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2015 09:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adjust-title-and-blank-between-graphs/m-p/230039#M14495</guid>
      <dc:creator>problems99</dc:creator>
      <dc:date>2015-10-15T09:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Adjust title and blank between graphs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adjust-title-and-blank-between-graphs/m-p/230257#M14518</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I understand, titles and footnotes are supposed to be printed only once per page. I have used tagsets.rtf with an "ods text" statement above the chart instead of title statements to achieve several text formatted as titles on a single page, see code below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nocenter;
goptions device=ACTXIMG;
title;
footnote;

ods tagsets.rtf file='c:\Test.rtf';

ods escapechar="^";
ods text="^S={font_face='Arial Black' font_size=12pt}This is text that looks like a title";

proc sgplot data=sashelp.cars;
 vbar cylinders;
run;

ods text="^S={font_face='Arial Black' font_size=12pt}This is another text that looks like a title";

proc gchart data=sashelp.cars;
 vbar cylinders;
run;

ods text="^S={font_face='Arial Black' font_size=12pt}This is yet another text that looks like a title";

proc tabulate data=sashelp.cars;
 class make cylinders;
 table make, cylinders ;
run;

ods tagsets.rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Oct 2015 10:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adjust-title-and-blank-between-graphs/m-p/230257#M14518</guid>
      <dc:creator>jb3</dc:creator>
      <dc:date>2015-10-16T10:49:24Z</dc:date>
    </item>
  </channel>
</rss>

