This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |
proc template;
define style timesrtf;
parent=styles.journal;
replace fonts /
‘BatchFixedFont’ = (‘Times’,9pt)
‘TitleFont’ = (‘Times’,12pt)
‘TitleFont2’ = (‘Times’,9pt)
‘FootFont’ = (‘Times’,9pt,Italic)
‘StrongFont’ = (‘Times’,9pt,Bold)
‘EmphasisFont’ = (‘Times’,9pt)
‘FixedEmphasisFont’ = (Times,9pt)
‘FixedStrongFont’ = (Times,9pt,Bold)
‘FixedHeadingFont’ = (Times,9pt)
‘FixedFont’ = (Times,9pt)
‘headingEmphasisFont’ = (‘Times’,9pt)
‘headingFont’ = (‘Times’,9pt)
‘docFont’ = (‘Times’,9pt);
style table from output /
cellpadding = 2pt
background=white
rules=groups
frame=void;
style body from document /
leftmargin=1in
rightmargin=1in
topmargin=1in
bottommargin=0.5in;
replace color_list /
‘bgH’ = white
‘fg’ = black
‘bg’ = white;
end;
run;
proc template;
define style mystyle;
parent=styles.printer;
replace fonts /
‘BatchFixedFont’ = (‘Courier’,8pt)
‘TitleFont2’ = (‘Courier’,9pt,Bold)
‘TitleFont’ = (‘Courier’,9pt,Bold)
‘StrongFont’ = (‘courier’,8pt,Bold)
‘EmphasisFont’ = (‘Courier’,8pt)
‘FixedEmphasisFont’ = (Courier,8pt)
‘FixedStrongFont’ = (Courier,8pt,Bold)
‘FixedHeadingFont’ = (Courier,8pt)
‘FixedFont’ = (Courier,8pt)
‘headingEmphasisFont’ = (‘Courier’,8pt)
‘headingFont’ = (‘Courier’,8pt)
‘docFont’ = (‘Courier’,8pt);
style table from output /
cellpadding = 1pt
background=white
rules=groups
frame=void;
* rules=all/*rows*//*groups*/
* frame=hsides/*box*/;
style body from document /
leftmargin=0.36in
rightmargin=0.25in
topmargin=0.60in
bottommargin=0.36in;
replace color_list /
‘link’ = black
‘bgH’ = white
‘fg’ = black
‘bg’ = white;
end;
run;
This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |