LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2008, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 31 Oct 2008 10:35:59 -0500
Reply-To:     Mary <mlhoward@avalon.net>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Mary <mlhoward@AVALON.NET>
Subject:      Re: An ODS RTF question
Comments: To: Dirk Van Krunckelsven <dirk.vk@GMAIL.COM>
Content-Type: text/plain; charset="iso-8859-1"

I have a question about a similar thing- I am trying to produce a report destined for RTF; it is composed of multiple parts, such as multiple outputs from Proc Tabulate and Proc Print.

1. Is there a tagset for RTF similar to the Excel Tagset for XML that would specify the file? How would I code it to open the tagset for rtf output?

2. Is there a way to get rid of the page breaks between each section? I would like the results of one Proc Tabulate to immediately follow the previous output without paging to the next page.

-Mary ----- Original Message ----- From: Dirk Van Krunckelsven To: SAS-L@LISTSERV.UGA.EDU Sent: Friday, October 31, 2008 8:35 AM Subject: An ODS RTF question

Hi guys,

I'm trying to get my tables out through ODS... All nice and neat, but one thing keeps bugging me: I altered all the fonts through template to be Arial 9pt, like so:

proc template; define style MS_RTF; parent=Styles.sg /*In this one I have called all the defaults to see what is in there*/;

replace fonts / 'TitleFont2' = ("Arial",9pt,Normal) 'TitleFont' = ("Arial",9pt,Normal) 'StrongFont' = ("Arial",9pt,Normal) 'EmphasisFont' = ("Arial",9pt,Italic) 'FixedEmphasisFont' = ("Arial",9pt,Italic) 'FixedStrongFont' = ("Arial",9pt,Normal) 'FixedHeadingFont' = ("Arial",9pt,Normal) 'BatchFixedFont' = ("SAS Monospace, Arial",9pt) 'FixedFont' = ("Arial",9pt) 'headingEmphasisFont' = ("Arial",9pt,Normal Italic) 'headingFont' = ("Arial",9pt,Normal) 'docFont' = ("Arial",9pt);

end; run;

Yet, when I look at my report in RTF, just before the footnotes and just after the footnotes, there is still a line defined as Times New Roman, 12pt.

Is there a font I missed, moreover the 12 pt. is odd.

PS: using 9.1.3 SP4, on Win XP, and Word 2000.

Cheers, Dirk


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