+ Reply to Thread
Results 1 to 3 of 3

Thread: ods pdf: adding blank pages with text only

  1. #1
    Points: 3,999, Level: 40
    Level completed: 25%, Points required for next Level: 151

    Posts
    305
    Thanks
    16
    Thanked 15 Times in 15 Posts

    ods pdf: adding blank pages with text only



    Hello all,

    I am creating a large PDF document in SAS using the ODS PDF abilities. I would like to add a blank page that says in very large print "THIS PAGE INTENTIONALLY LEFT BLANK" or something of the sort. I basically just need to know how to insert a blank page between outputs and be able to control text (size, font, color...) on that blank page.

    I'm not quite sure how best to accomplish this.

    Any suggestions?

  2. #2
    Points: 2,180, Level: 28
    Level completed: 20%, Points required for next Level: 120

    Location
    Chicago, IL
    Posts
    108
    Thanks
    1
    Thanked 19 Times in 15 Posts

    Re: ods pdf: adding blank pages with text only

    You can mess around with the options beyond just what is here.

    Code: 
    ods pdf body = 'file';
    /* Stuff */
    ods pdf startpage=now;
    ods escapechar='^';
    ods pdf text='^S={just=center font=("Times Roman",13PT,Bold Italic)}THIS PAGE INTENTIONALLY LEFT BLANK'; 
    ods pdf startpage=now;
    /* More stuff */
    ods pdf close;

  3. The Following User Says Thank You to Janus For This Useful Post:

    lancearmstrong1313 (09-13-2012)

  4. #3
    Points: 3,999, Level: 40
    Level completed: 25%, Points required for next Level: 151

    Posts
    305
    Thanks
    16
    Thanked 15 Times in 15 Posts

    Re: ods pdf: adding blank pages with text only


    Thanks. I actually am familiar with the ods pdf text statement. I did not even think about using an escapechar to go along with it to control font and size. I'll give it a shot!

    Thanks!

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts








Advertise on Talk Stats