Chapter Contents

Previous

Next
The GOPTIONS Procedure

Example 1: Displaying TITLE and FOOTNOTE Statements


Procedure features:
PROC GOPTIONS statement:
FOOTNOTE
NOLIST
Sample library member: GR20N01

This example uses the FOOTNOTE option to display the current definitions of both the FOOTNOTE and TITLE statements. It also uses the NOLIST option to suppress the list of graphics options. Using the NOLIST Option (GR20N01) shows the listing that appears in the LOG.

Using the NOLIST Option (GR20N01)
TITLE1 HEIGHT=6 COLOR=BLUE FONT=SWISSB 'Production Quality' ;
TITLE2 HEIGHT=4 COLOR=BLUE FONT=SWISSB 'January through June';

FOOTNOTE1 HEIGHT=3 COLOR=GREEN FONT=SWISS 'Data from SASDATA.QUALITY' ;

FOOTNOTE2 HEIGHT=3 COLOR=GREEN FONT=SWISS '* denotes approximations' ;

 Note about code
goptions reset=global;
 Note about code
title1 h=6 c=blue f=swissb 'Production Quality';
title2 h=4 c=blue f=swissb 'January through June';
footnote1 h=3 c=green f=swiss 'Data from SASDATA.QUALITY';
footnote2 h=3 c=green f=swiss '* denotes approximations';
 Note about code
proc goptions nolist footnote;
run;


Chapter Contents

Previous

Next

Top of Page

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