Chapter Contents

Previous

Next
The GSLIDE Procedure

Example 2: Displaying Annotate Graphics


Procedure features:
PROC GSLIDE option:
ANNOTATE=
Other features:
Annotate data set
Sample library member: GR27N02

[IMAGE]

In this example, the GSLIDE procedure displays Annotate graphics along with current TITLE and FOOTNOTE definitions. See The Annotate Data Set for information on creating Annotate data sets.
 Note about code
goptions reset=global gunit=pct cback=white
         colors=(black blue green red)
         ftitle=swissb htitle=6 ftext=swiss htext=3;
 Note about code
data art;
   length function color style $ 8;
   input function $ x y color $ style $;
   xsys='5'; ysys='5';
   datalines;
poly      30  20  blue    solid
polycont  50  20  .       .
polycont  40  50  .       .
poly      50  20  green   x1
polycont  70  50  .       .
polycont  60  50  .       .
poly      40  50  red     l1
polycont  60  50  .       .
polycont  50  80  .       .
;
 Note about code
title 'Number 17';
footnote1 h=4 '"Art is anything you can get away with."';
footnote2 j=r h=4 'D. H. Benson   ';
footnote3 j=r 'GR27N02 ';
footnote4 h=3 angle=90;
footnote5 h=3 angle=-90;
 Note about code
proc gslide annotate=art
            border
            wframe=6
            cframe=red;
run;
quit;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.