<?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: Place Text Beside Image in ODS RTF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658349#M24197</link>
    <description>I appreciate this. That's how I would approach it for ODS PDF as well, but I don't believe ODS Layout Absolute is supported for ODS RTF, and that's what I need to construct this document in.</description>
    <pubDate>Sun, 14 Jun 2020 12:43:25 GMT</pubDate>
    <dc:creator>tburus</dc:creator>
    <dc:date>2020-06-14T12:43:25Z</dc:date>
    <item>
      <title>Place Text Beside Image in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658282#M24195</link>
      <description>&lt;P&gt;I am trying to create a cover page that has an image and text appearing side by side. The code I currently have places the first line at the end of the image, put then continues on below it. How can I get them to appear inline?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* cover page */
title j=r color=white bcolor=&amp;amp;Dblue height=10pt font='Arial' "NCAA Football Rules Committee Report     ";
ods rtf text="^S={just=c} NCAA Football Rules Committee Meeting^n Injury Surveillance Report^4n"; 
ods rtf text= "^S={just=l cellwidth=5in preimage='C:/Users/Todd/Dropbox/Datalys/Rules Committee Report/rc_title.png'} 
			^S={just=l vjust=t cellwidth=3in} Submitted to: ^n
			NCAA Women's Softball Rules Committee^4n
			Submitted by:^n
			Datalys Center for Sports Injury Research and Prevention^n
			401 West Michigan Street, Suite 500^n
			Indianapolis, IN 46202^n
			855-832-4222^4n
			Report Date: n/a";
footnote j=c color=white bcolor=&amp;amp;Dblue height=8pt font='Arial' "Datalys Center | 401 West Michigan Street, Suite 500 | Indianapolis, Indiana 46202 | 855-832-4222";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How it looks:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cover.png" style="width: 698px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/42911i37020D0C2F5D8F65/image-size/large?v=v2&amp;amp;px=999" role="button" title="cover.png" alt="cover.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jun 2020 15:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658282#M24195</guid>
      <dc:creator>tburus</dc:creator>
      <dc:date>2020-06-13T15:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Place Text Beside Image in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658299#M24196</link>
      <description>&lt;P&gt;This is rough and untested obviously.&amp;nbsp; Play with the settings.&amp;nbsp; You can adapt for rtf&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';
ods _all_ close;
options nonumber nodate orientation=portrait papersize=letter nocenter
	leftmargin=.5in rightmargin=.5in topmargin=.5in bottommargin=.5in;
ods pdf file="~/img/fname.pdf" dpi=300 notoc;

/*  start the absolute layout for the page */
ods layout absolute;
ods region  x=0.0in y=0.0in height=10in width=7in ;

ods pdf text="^S={}";
ods region  x=0.0in y=0in height=1in width=7in   ;
ods pdf text="^S={font=('Arial', 10pt) just=r foreground=white backgroundcolor=blue} NCAA Football Rules Committee Report^S={}  ";
/* ods pdf text="^S={just=r} NCAA Football Rules Committee Report^S={}  "; */
ods pdf text="^S={just=c} ^n^n NCAA Football Rules Committee Meeting^n Injury Surveillance Report^4n^S={}";

ods region  x=0.0in y=1in height=6in width=5in ;

ods graphics on / noborder height=5.8in width=4.9in scale=on;

ods pdf text= "^S={just=l cellwidth=5in preimage='~/img/test.png'} "  ;

ods graphics off;
ods region  x=4.75in y=2.5in height=6in width=2.75in ;

ods pdf text= "^S={just=l vjust=t cellwidth=3in} Submitted to: ^n
			NCAA Women's Softball Rules Committee^4n
			Submitted by:^n
			Datalys Center for Sports Injury Research and Prevention^n
			401 West Michigan Street, Suite 500^n
			Indianapolis, IN 46202^n
			855-832-4222^4n
			Report Date: n/a";

ods region  x=0.0in y=9in height=.5in width=8in ;
			
ods pdf text="^S={just=c foreground=white backgroundcolor=blue} 
 Datalys Center | 401 West Michigan Street, Suite 500 | Indianapolis, Indiana 46202 | 855-832-4222  ^S={}";
			
ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 14 Jun 2020 03:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658299#M24196</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-06-14T03:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Place Text Beside Image in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658349#M24197</link>
      <description>I appreciate this. That's how I would approach it for ODS PDF as well, but I don't believe ODS Layout Absolute is supported for ODS RTF, and that's what I need to construct this document in.</description>
      <pubDate>Sun, 14 Jun 2020 12:43:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658349#M24197</guid>
      <dc:creator>tburus</dc:creator>
      <dc:date>2020-06-14T12:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Place Text Beside Image in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658351#M24198</link>
      <description>Since it's a simple two columns layout, you could look into gridded layout&lt;BR /&gt;and output to HTML that can be for example, opened in Word and saved into&lt;BR /&gt;RTF&lt;BR /&gt;</description>
      <pubDate>Sun, 14 Jun 2020 12:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Place-Text-Beside-Image-in-ODS-RTF/m-p/658351#M24198</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-06-14T12:56:12Z</dc:date>
    </item>
  </channel>
</rss>

