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
SAS Super FREQ
...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 !!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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