Q: How do I print subscript and superscript characters for chemical equations and footnote indicators?

A: The technique is to double the page length value of the page-size parameter from 60 to 120 and and also double the lines-inch value from 6 to 12.

---------------------------- Example code starts here -------------------------
	begin-report
	     do main
	end-report
	
	begin-setup
	page-size 120 80   		
	declare printer
	     type=hplaserjet
	     lines-inch = 12
	end-setup

	begin-procedure main
	graphic () font 0 16
	print 'Footnote' (+1,1)            ! Output will be:  Footnote1
           graphic () font 0 8.5
	print '1' (1,14)
	graphic () font 0 16
	print 'H O' (+4,1)		! Output will be:  H2O
	graphic () font 0 8.5
	print '2' (+1,3)
	end-procedure
---------------------------- Example code ends here ---------------------------