	
	_P_o_s_t_S_c_r_i_p_t _G_r_a_p_h_i_c_s
	
	     postscript(file="PS", landscape=TRUE, width, height)
	
	_A_r_g_u_m_e_n_t_s:
	
	        file : the name of a file to print to, it must be a
	               quoted string.
	
	   landscape : the orientation of the printed image, a logi-
	               cal.
	
	width,height : the width, and height of the graphics region
	               in inches.  The default is to use the entire
	               page.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     The file file is opened and the PostScript commands
	     needed to plot any graphics requested are stored in
	     that file.  This file can then be printed on a suitable
	     device to obtain hard copy.
	
	_S_e_e _A_l_s_o:
	
	     x11, macintosh, device.
	
	_E_x_a_m_p_l_e_s:
	
	     # open the file "foo" for graphics output
	     postscript("foo")
	
	     # produce the desired graph(s)
	     plot(x,y)
	
