Pdf - pages A4 into middle of A3

So this is what I am trying to do:
I have a pdf which is the syllabus of one of my subjects. It's about 50-60 pages long.
Imagine I have this printed in A4, full size.
I want to print the A4 page, in the middle of the A3 page which would leave half an A4 blank space to each side of the A3 page.
This would be like photocopying the A4 page on A3 paper. Basically a portrait A4 page in landscape A3.
The reason for this:
It's easier to annotate on each blank side the syllabus, to make sure I know everything.
I do not know how to export pdf into pages so that I can outline this accordingly.
Any ideas?
Thanks!

C,
Here are the steps.
When you have completed and Saved your Pages Document on an A5 Portrait layout, File > Print > PDF > Open PDF in Preview.
In Preview, File > Print. You will get this dialog box:
In the Preview.app Print dialog, make the following settings:
Paper size: A4
Orientation: Landscape
Auto-Rotate: Off
Scale: 100%
I beleive this is what you are looking for.
Jerry

Similar Messages

  • Merging more than one PDF page into a singe page.

    Hi All,
    Here is my new requirement.
    I need to merge two PDF page contents into a single PDF page.
    Is there any way to active this.
    Looking forward to your help.

    Hi PDL and Leo,
    I am attaching the code below. Kindly let me know what mistake I am doing.
    CosDoc cosDoc = PDDocGetCosDoc(objPDDoc);
    PDPage page1 = PDDocAcquirePage(objPDDoc, 0);
    CosObj pageCos1 = AFPDFormFromPage(cosDoc, page1);
    PDPage page2 = PDDocAcquirePage(objPDDoc, 1);
    CosObj pageCos2 = AFPDFormFromPage(cosDoc, page2);
    CosObj cBBoxObj = CosNewArray(cosDoc, false, 4L);
    CosArrayInsert(cBBoxObj, 0L, pageCos1);
    char* charMatrix = "q .5 0 0 1 .75 0 cm \r";
    char* charQ = "Q \r";
    ASInt32 iMatrixSize = strlen(charMatrix);
    ASInt32 iQSize = strlen(charQ);
    char * mBuffer = (char*)ASmalloc(iMatrixSize);
    char * qBuffer = (char*)ASmalloc(iQSize);
    memcpy(mBuffer, charMatrix, iMatrixSize);
    memcpy(qBuffer, charQ, iQSize);
    ASStm objMatrixStream = ASMemStmRdOpen(mBuffer, iMatrixSize);
    ASStm objQStream = ASMemStmRdOpen(qBuffer, iQSize);
    CosObj matrixContent = CosNewStream(cosDoc, true, objMatrixStream, 0, true, CosNewNull(), CosNewNull(), -1);
    CosObj qContent = CosNewStream(cosDoc, true, objQStream, 0, true, CosNewNull(), CosNewNull(), -1);
    ASStmClose(objMatrixStream);
    ASStmClose(objQStream);
    CosArrayInsert(cBBoxObj, 1L, matrixContent);
    CosArrayInsert(cBBoxObj, 2L, pageCos2);
    CosArrayInsert(cBBoxObj, 3L, qContent);
    CosObj pageCos = PDPageGetCosObj(page1);
    CosDictPut(pageCos, ASAtomFromString("Contents"), cBBoxObj);
    ASfree(mBuffer);
    ASfree(qBuffer);
    PDPageNotifyContentsDidChange(page1);
    PDDocSave(objPDDoc, PDSaveIncremental, NULL, NULL, NULL, NULL);
    PDPageRelease(page1);
    PDPageRelease(page2);

  • Rendering the PDF page to Bitmap object using Acrobat SDK DrawEx() or CopyToClipboard()

    I am trying to find whether each page in PDF document is color or monochrome.
    For doing this I am rendering the PDF page to Bitmap object using Acrobat SDK DrawEx() or CopyToClipboard()
    Once after rendering the PDF page, I am using GetPixel() to read each pixel value to decide about color or Monochrome.
    Problem:
    When I read the pixel to decide about the page color or monochorme, in some XP machines it is showing the PDF page as color and in some PC it is showing it as Monochrome.  Color quality in both the system is kept as 32 Bit.
    After this I tried copying the PDF page directly into clipboard and then take the clipboard image to decide about color and monochorme, but even this also behaves in the similar way.
    Question:
    Why rendering the PDF page to Bitmap object using DrawEx() or CopyToClipboard() is behaving differently in each machines.
    If required I will send my sample project.
    With regards,
    Rajeshrv.

    In SDK documentation, there is no methods are defined for getting the color of the page.  In color spaces and color values, we can set the color for drawing operations. A method AVPageViewSetColor is used for setting the color. 
    But there is no methods defined for getting the color in the page.  Please let me know , is there any alternative way.
    Thanks in advance.

  • Merge Different Spools containing a Single PDF page into a Single PDF file.

    Greetings,
    I am developing a custom object where in i need to read PDF file from many different Spools(Range given on Input Screen), where each spool has a single PDF page in it. I need to combine all these PDF Pages into a single PDF file & either create a new Spool or save it on an Application Server.
    At present i have developed the code where in i am able to read the PDF files from different spools & convert them into Binary but i am not able to generate it back to PDF file.
    Kindly find my code for your reference.
    CODE:-
    START-OF-SELECTION.
      PERFORM f_get_spool_1000 .
      PERFORM g_conv_pdf_to_bin_2000 .
    *&      Form  F_GET_SPOOL_1000
          text
    FORM f_get_spool_1000 .
      SELECT * FROM tsp01
               INTO TABLE gt_tsp01
               WHERE rqident IN s_spool
               ORDER BY rqcretime DESCENDING.
      IF sy-subrc = 0.
        SORT gt_tsp01 BY rqident .
      ENDIF.
    ENDFORM.
    *&      Form  G_CONV_PDF_TO_OTF_2000
          text
    DATA: lv_filename_out   TYPE string,
                lv_len            TYPE i,
                lt_tab            TYPE tsfixml .
      DATA: lwa_print_parms    LIKE pri_params,
                  lv_valid(1)       TYPE c .
      DATA: lv_linsz LIKE sy-linsz VALUE 132, " Line size
                  lv_paart LIKE sy-paart VALUE 'X_65_132'.  " Paper Format
      DATA : lt_tsp01 TYPE STANDARD TABLE OF tsp01 ,
                   lwa_tsp01 TYPE tsp01 .
      CLEAR : gv_pdf, gwa_tsp01, gv_renderpagecount .
      LOOP AT gt_tsp01 INTO gwa_tsp01.
        CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
          EXPORTING
            i_spoolid         = gwa_tsp01-rqident
            i_partnum         = 1
          IMPORTING
            e_pdf             = gv_pdf
            e_renderpagecount = gv_renderpagecount
            e_pdf_file        = gv_pdf_file
          EXCEPTIONS
            ads_error         = 1
            usage_error       = 2
            system_error      = 3
            internal_error    = 4
            OTHERS            = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CLEAR lv_len .
        REFRESH gt_bin .
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = gv_pdf
          IMPORTING
            output_length = lv_len
          TABLES
            binary_tab    = gt_bin.
        CLEAR gwa_bin .
        LOOP AT gt_bin INTO gwa_bin.
          APPEND gwa_bin TO gt_listout.
          CLEAR gwa_bin .
        ENDLOOP.
      ENDLOOP.
    Get FP reference
      DATA: lo_fp     TYPE REF TO if_fp VALUE IS INITIAL,
            lo_pdfobj TYPE REF TO if_fp_pdf_object VALUE IS INITIAL,
            lo_exc    TYPE REF TO cx_root,
            lv_xslt_message TYPE string .
      lo_fp = cl_fp=>get_reference( ).
    For handling exceptions
      DATA: lo_fpex TYPE REF TO cx_fp_runtime VALUE IS INITIAL.
      TRY.
          lo_pdfobj = lo_fp->create_pdf_object( connection = 'ADS' ).
      Set document
          lo_pdfobj->set_document(
            EXPORTING
              pdfdata = gt_listout ).
      Tell PDF object to extract data
          lo_pdfobj->set_extractdata( ).
      Execute the call to ADS
          lo_pdfobj->execute( ).
        CATCH cx_root INTO lo_exc.
          lv_xslt_message = lo_exc->get_text( ).
      ENDTRY.
    Your quick reply would be of great help.
    Regards.

    Thank Your for your concern, there are many replies & posts but all of them points only to Try what they have said. As being said that trying to convert PDF to binary & appending many PDF similarly would not let you generate a single PDF again.
    Your Kind guidance would be really appreciable.
    Regards.

  • My HP Officejet 8500a All-In-One forwards faxes (as a tiff file) to my iphone.  Can only view/receive 1st page, embedded into email as a non-attachment.  Iphone receives email(s) pdf attachments well.  What can I do?

    My HP Officejet 8500a All-In-One forwards faxes (as a tiff file) to my iphone.  Can only view/receive 1st page, embedded into email as a non-attachment.  Iphone receives email(s) pdf attachments well.  What can I do?

    Try this app
    http://itunes.apple.com/us/app/fax-reader/id406902152?mt=8

  • I have problem when opening a pdf page, my mouse control is hijacked to that tab when im on other tab, i cant scroll or use the middle rollling button, i have to click at the pdf tab then my control over the mouse middle button is restored.

    I think I have this problem even on earlier version. The thing is I set open link in new tab and not switch over to the opened tab. My habit is to open a pdf page in the background and let it load first. What happen is that when the pdf page finished loading ( i do not set to download it), it hijacks my middle mouse button control. When i scroll down or scroll up on my original tab, it wont scroll on the tab, but insttead it scrolls on the pdf tab. I have to click on the pdf tab, then i can use the scrolling function on other tabs back. As for when i opened several pdf tabs, it seems i have to click on the tab that just finished loading, that means several times until they all finish loading. It has been getting on my nerve lately. And all pdf trouble i search from google led to unable to open pdf, firefox hang or crash when opening a pdf and the likes.

    core-el, i don't see the advantage of that or i can't figure out how i'm supposed to use it. for starters, i have to click the mouse in order to get "add bookmark here" to open, which is no different than clicking on the star in the location bar, or right-clicking on the page. there are also options in the bookmarks toolbar, but they all require clicking the mouse & holding down the right button, etc.
    my goal is to use keystrokes only. typing on the keyboard, using both hands, using the space bar & my left pinky finger to tab over are all painless routines for me. as soon as i have to take my fingers off the keyboard & use the mouse, the pain begins.
    as i said, in older versions of firefox, all i had to do to bookmark a page was click ctrl>d, then tab over & arrow down, when appropriate, to find the folder & add the bookmark. for me, as a touch-typist whose speed is between 60 & 80 wpm, this is lightning fast.
    if i have this wrong, please correct me. i just see it as more mouse clicks that don't save me time or pain.

  • How to split PDF pages into separate pages?

    I have a PDF document that is in booklet format (i.e., front cover and rear cover on a single page) with two pages to a single 8-1/2 X 11 page size. Is there an application that can split the double pages into separate PDF pages? I don't want to use screen capture to create separate PDF's if there is a better way.

    There are a lot of utilities for PDF files so you might search at CNet Downloads or MacUpdate to see what's available. PDF Clerk and PDF Pen may let you drag each page out of the document as a separate file. Even Preview may let you do the same.

  • Splitting dual book pages into separate pdf pages

    I have a book scanned into pdf with two book pages per adobe page (side by side). How can I split the pdf page in way that each book page becomes its own pdf page? My chief concern is that one side is always tilted which makes reading and highlighting difficult. Any help would be great. I have Acrobat 9 pro on vista. thanks.

    I have had to do this in the past, but the problem is the file size then
    doubles. I haven't figured out an easy to way to remove the data from the
    cropped areas.

  • PREVIEW  How do I use it to assemble PDF pages into a book?  I used to be able to do it, but now the pages do not follow on one after another.

    I used to be able to load PDF pages into Preview to make a book and to see the pages follow one after the other.  Now the pages stay separate even when the file is saved and opened in either Adobe reader or Preview.

    Are you going to the thumbnail view and dragging the separate PDF's onto the top one so they combine?

  • How can i chop pdf page into SWF?

    i want to make pc apps to read pdf with page flip transition like on the ipad. i must chop every pdf page to make a single page on the book animation. but i wonder how can i do that?

    how are you getting the pdf into your app?

  • How to combine pdf pages into a single pdf document

    I´ve done this before but I forgot. Can anyone help me?

    Hi profesora.2014.2015,
    Adobe Reader is a free trusted standard for reliably viewing, printing, and annotating PDF documents. It’s the only PDF file viewer that can open and interact with all types of PDF content, including forms and multimedia.
    In order to combine PDF pages into a single PDF file, you need to either use Adobe Acrobat (Merging and combining PDF files | Acrobat XI - Adobe India) or Adobe PDF pack (Reliably Create PDFs, Convert PDFs, & Merge PDFs Online | Adobe PDF Pack).

  • Combining multiple pdf pages into a single document

    I realize this is probably an inappropriate request -- probably? almost certainly -- for this forum, but perhaps someone can refer me to another source for a solution.
    I would like to combine several pages individually scanned to pdf format into a single pdf document. How do I do that? (I have only Adobe Reader. I do not have any applications for creating and editing pdf pages.)
    Hope you'll forgive the inappropriate request, and thanks to anyone who can refer me to a more appropriate source.
    Sincerely,
    Eric Weir

    I would like to combine several pages individually scanned to pdf format into a single pdf document. How do I do that?
    You already have the application installed -- Preview. Whether the source files are single page or multipage documents, whether they are all on size/orientation or come in multiple dimensions/orientations, simply ...
    1) Open each in a separate Preview window,
    2) Open the "sidebar" for each window,
    3) Drag one or more icon pages from any of the source Preview sidebar windows to your target Preview sidebar window,
    4) Arrange the order of the pages in the target sidebar window as desired, and
    5) Save resulting document under a new name using the "Save As..." File menu option.
    ADDED: Oops! Too slow. Someone else beat me to it...

  • Printer goes dead and reboots in the middle of some PDF pages

    My Photosmart Plus B209a printer goes dead in the middle of some PDF pages. If I avoid printing those, the rest might print fine. It seems like the printer has problem with interpretation of some part of the print. I doubt it is problem with the communication,since reprinting the failed page 10 times, makes the printer go down exactly the same place on the page.
    Any ideas?

    Call the Apple Store that repaired it. You need to advise them that you are having "issues."

  • Jpg pictures into Pdf pages

    I am trying to help a group insert low resolution pictures into Pdf pages that have been created by ColdFusion, so that the pages open faster.
    What settings would be suggested so the Pdf pages are attractive and the pages open up fast?
    Thanks

    You would be better posting this is the Acrobat Forum.

  • How do I: put multiple PDF pictures into one PDF page?

    I have just installed Adobe Acrobat Pro Ver 9 - so this apllication and its associated SDK are the only applications available to me for use.
    Adobe Acrobat was chosen because of its AutoCAD capabilities (when AutoCAD is not present). i.e.  Using Acrobat & AutoCAD's plot configuration files & Pen / colour selection table ensures the output has correct line thicknesses (sometimes colours in CAD are used to represent a line's thickness) - this is preserved when using Acrobat.
    The generated output is fantastic. However, when I try to print the output via Excel / Word (used for layout) - my perfect output is reduced to imperfect results.
    So: is it possible to layout multiple PDF pictures inside one PDF entity for printing purposes such that the original output is not distorted?
    I have in the past put pages in front or behind other pages but cannot find any references or code that works with Pro 9 nor indeed the manual way to insert PDF pages at any location on a single PDF Page?
    I'll try and explain.  My template coud consist of 6 boxes on a single A4 page thus:
    My base PDF Page (can be thought of as a template - ideally it wont be printed - but even if it is - it wont be printed on any media material) has 6 areas (any number of areas up to 100) on it.  In each area, there is a box.  It is within these boxes that I wish to place a PDF Picture.  Not all pictures will be the same.  How can I do that?  Ideally I'd like some example C# code - though doing it as a user will suffice, for now.
    Is there a way of programmatically selecting each of the above boxes on the base PDF Document?
    I do know of one manual method (though it seems long winded) and it is not accurate enough in that (even though the layers are deselected) - the hidden layers are subsequently outputed too - not good!
    Uses a button icon over each box.
    All the current Adobe help for the SDK refers to Pro 8 and previously - which all seems to have now been replaced in Pro 9
    This question will be placed in the Developer & User Forums - as it pertains to both.
    Thankyou in advance for anyone that either knows any workarounds or any ways to affect a solution. 

    Picture of what I want to see:
    What I get, and don't want to see is:
    The PDF was generated using Adobe Acrobat Pro 9 from an AutoCAD LT (DWG) file without AutoCAD being present but making use of a plot configuration (PC3) file & pen table (CTB) file.  The resultant file [WhatIWantToSee.pdf] is perfect - all the lines are the right thickness & colour and are perfect vectors (with no construction / proofing layers visible).  When you view that file in Acrobat and show the "Layers" property box, you see that the correct number of layers whilst are still present are indeed turned off.
    However, when I add a forms-button to one of the rectangles (please refer to initial post - where there are 6 rectangles), and display same file as icon display.  The resultant view is the one shown above named [ What I get and don't want to see].  It seems the saved layer settings are all ignored?
    I generated the PDF file through Adobe Acrobat Pro 9  Menu | File | Create PDF | From File (Files of type Autodesk) | Options | Selected Layers | Layout | Last Active Layout.
    Rectangles are regular content elements - not fields (in the general meaning of form-fields).

Maybe you are looking for

  • Print pay-slip on double-sided

    Hello, We would like to print pay-slip on both side mode (we use ABAP list with report RPCEDTF0). The print is Ok but the problem is that, on the same page, there are pay data for an employee on the side and pay data for an other employee on the othe

  • SMARTFORMS: how to link two varibles in one line.

    Hi guys, I am experiencing a problem with SMARTFORMS. I have a string longer than 255 characters. I want to print it in a smartforms, but due to the limitation in the characters I have to separate the string in two strings. My question is the next, h

  • Multiple iPods on one iTunes

    Is it possible multiple iPod with one iTunes? Thank you.

  • HTML5 DOCTYPE in custom WPC web form

    Hello, we are implementing a custom WPC web form along following SAP documentation: http://scn.sap.com/docs/DOC-22253 The new web form incorporates JS-Scripts from an open source project (Galleria.io). However, this JS-Application requires a HTML5 DO

  • Release indicator in release strategy

    Hye, I need to  change release indicator in release strategies. can anyone let me know how to do the same I have done this in confi -> sap - >mm -> purchasing - >PO - >release strategy and i changed indicator as x to y in release strategy, but i have