GOPTIONS Procedure

Example 1: Displaying TITLE and FOOTNOTE Statements

Features:

PROC GOPTIONS statement options FOOTNOTE and NOLIST

Sample library member: GOPTIFT
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 (GOPTIFT) shows the listing that appears in the Log window.
Using the NOLIST Option (GOPTIFT)
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";

Program

goptions reset=all;
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";
proc goptions nolist footnote;
run;

Program Description

Clear all global statements.
goptions reset=all;
Define titles and footnotes.
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";
Produce the listing. The NOLIST and FOOTNOTE options control the information that appears in the Log window.
proc goptions nolist footnote;
run;