

| Features: |
TREPLAY statement |
| Other features: |
PROC GSLIDE |
| Sample library member: | GRERGOT1 |
| Note: | This example requires template NEWTEMP, which is created in Creating a Template. In order to run this program, you must first run the program in Creating a Template to create the NEWTEMP template. Otherwise, an error will occur in this program. |
goptions reset=all border hsize=5.14in vsize=4.13in;
ods html close; ods listing;
proc gslide gout=grafcat; title c=navy "Graph Number Three"; run; title c=lime "Graph Number One"; run; title c=orange "Graph Number Two"; run;
proc gslide gout=grafcat; title c=purple "Common Title"; footnote c=blue "Common Footnote"; run;
proc greplay igout=grafcat gout=excat tc=tempcat nofs; template=newtemp;
treplay 1:gslide
2:gslide1
3:gslide2
5:gslide3;
quit;
ods listing close; ods html;
proc gslide gout=grafcat; title c=navy "Graph Number Three"; run; title c=lime "Graph Number One"; run; title c=orange "Graph Number Two"; run;