LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (February 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 20 Feb 2009 09:33:18 -0500
Reply-To:     Tom Hide <tom.hide@DEHIWORLD.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Tom Hide <tom.hide@DEHIWORLD.COM>
Subject:      ODS Graphics

Hi

I am having a minor problem with this code, as I cannot seem to change the font for the title and footnote, all of which are coming out as Times New Roman, Bold, Italic FS 13.

I need titles and footnotes as Times New Roman, FS 12 (neither bold nor italics)

proc template; define style rtf; parent = styles.rtf; style Titles_and_footers from Column / font_face = "Times New Roman" font_size = 12pt; end;

list rtf; run;

goptions reset=all gunit=in cback=white device=cgmof97L ftitle=timesnewroman ftext=timesnewroman hsize=8 in vsize=4 in gsfmode=replace htitle=3 htext=2.5 noborder ;

options nodate;

ods rtf file="&fptge\output.rtf" style=rtf nogtitle nogfootnote bodytitle ;

title One; title2 Two; title3 Three; title4 Four;

footnote Note;

proc ganno anno=aaa; run; quit;

ods rtf close;

ods trace off;

The graphics are coming out file, but I cannot seem to change the fonts for the titles and footnotes, which are embedded within the body.

Can anyone advise please?

Thanks

Tom


Back to: Top of message | Previous page | Main SAS-L page