BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I'm creating a large table into a PDF file which will use more than 1 page. At the bottom of every page (except the last one) there is the text '(continued)' printed.
How can I change the font and size of this text.
I can't find the style element to change the attributes using PROC TEMPLATE.

Who can help me ??
5 REPLIES 5
Kathryn_SAS
SAS Employee
The style attribute that affects the (Continued) text is called AFTERCAPTION. You can modify it with the following PROC TEMPLATE code:

proc template;
define style styles.test;
parent=styles.printer;
style aftercaption from container /
font_size=6pt;
end;
run;
Cynthia_sas
Diamond | Level 26
...and then you must use the new style to see the effect:
[pre]
ods pdf file='wombat.pdf' style=test;

...your tabulate code...
ods pdf close;
[/pre]

cynthia
deleted_user
Not applicable
Thanks, that solved my problem !!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 1851 views
  • 0 likes
  • 3 in conversation