Hi:
Not sure what's going on. Are you using a SAS FOOTNOTE statement or something within a Graph Template, since you're using SGRENDER????
When I run the code below, using TAGSETS.RTF and SGRENDER and some PROC REPORTS, I get TITLES and FOOTNOTES where I expect. If you are having issues with TAGSETS.RTF you might want to work with Tech Support.
cynthia
[pre]
ods path work.temp(update)
sasuser.templat(update)
sashelp.tmplmst(read);
proc template;
define statgraph graph.box_elip;
begingraph;
EntryTitle "Want to Use GTL" /;
EntryFootnote "EntryFootnote to Span Both Graphs";
layout lattice / columns=2 columngutter=10;
column2headers;
entry "Boxplot";
entry "Prediction Ellipse";
endcolumn2headers;
columnheaders;
entry "Graph 1";
entry "Graph 2";
endcolumnheaders;
layout overlay / yaxisopts=( Label="Age At Death" type=linear
linearopts=( tickvaluelist=( 40 60 80 100 )
viewmin=35 viewmax=100 ) );
BoxPlot X=chol_status Y=AgeAtDeath /
SortOrder=Data primary=true
LegendLabel="Age at Death" NAME="VBOX";
endlayout;
layout overlay / yaxisopts=( Label="Age At Death"
type=linear linearopts=( tickvaluelist=( 40 60 80 100 )
viewmin=35 viewmax=100 ) );
ScatterPlot X=Weight Y=AgeAtDeath /
primary=true Group=Chol_Status
LegendLabel="Age at Death" NAME="SCATTER";
Ellipse X=Weight Y=AgeAtDeath /
Type=Predicted LegendLabel="95% Prediction Ellipse"
NAME="ELLIPSE";
DiscreteLegend "SCATTER"/
Location=Outside halign=center
valign=bottom;
endlayout;
endlayout;
endgraph;
end;
run;
proc sort data=sashelp.heart out=heart;
by cholesterol chol_status;
run;
ods listing close;
ods tagsets.rtf file='testfootnote.rtf';
proc report data=heart nowd;
title 'Proc Report';
footnote "Test Footnote report";
column chol_status ageatdeath agechddiag;
define chol_status / group order=data;
define ageatdeath/mean "Avg Age At Death";
define agechddiag / mean "Avg Age CHD Diag";
run;
proc report data=heart(obs=75) nowd;
column sex ageatdeath status deathcause diastolic systolic;
title 'list some obs more than 1 pg';
footnote 'another footnote';
run;
proc sgrender data=heart
template=graph.box_elip;
where chol_status ne ' ';
title 'SGRENDER 1';
footnote "Test Footnote 1";
run;
proc report data=heart(obs=75) nowd;
column sex ageatdeath status deathcause diastolic systolic;
title 'list some obs more than 1 pg';
footnote 'another footnote';
run;
proc sgrender data=heart
template=graph.box_elip;
where chol_status ne ' ';
title 'SGRENDER 2';
footnote "Test Footnote 2";
run;
ods tagsets.rtf close;
[/pre]