Generate three graphs in the permanent catalog GRAFCAT. The GSLIDE procedure creates three text slides and stores them in REFLIB.GRAFCAT as specified by the GOUT= option. By default, these are stored as GSLIDE, GSLIDE1, and GSLIDE2.
proc gslide gout=reflib.grafcat;
   title c=red 'Graph Number 1';
   footnote h=3 j=r 'GR26N02(a) ';
run;
   title 'Graph Number 2';
   footnote h=3 j=r 'GR26N02(b) ';
run;
   title 'Graph Number 3';
   footnote h=3 j=r 'GR26N02(c) ';
run;