This is rough and untested obviously. Play with the settings. You can adapt for rtf
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;
... View more