How do I shuffle two pdf files together?

I have two pdf files I would like to combine together, but in a specific order. I want the page 1 of doc1 to be inserted behind page 1 of doc2; page 2 of doc1 to be inserted behind page 9 of doc2; page 3 of doc1 to be inserted behind page 17 of doc2, etc.  In general, if n is the page number of document1, I want page n of document1 to be inserted behind page 8*(n-1)+1 of document2.  Is this possible?

Quite Imposing can shuffle pages apart and together.
quite.com/imposing
There may be a free trial period.

Similar Messages

  • How do I combine two PDF files into one?

    I want to merge two PDF files into one to make things easier when I take the file(s) to a professional printer.
    Can I do this in Preview?
    Thanks.

    You can't do in Preview.
    You can combine individual PDFs into one PDF using one of these freeware utilities.
    PDFMergeX @ http://www.malcom-mac.com/blog/pdfmergex/
    joinPDF @ http://www.macupdate.com/info.php/id/16604
    Combine PDFs @ http://www.monkeybreadsoftware.de/Freeware/CombinePDFs.shtml>
    PDFLab (join & split) @ http://pdflab.en.softonic.com/mac
     Cheers, Tom

  • How do i merge two pdf files into one

    How do i merge 2 pdf files into one.

    Open up the first pdf in Preview
    Then from Menu
    select from Edit Menu
    Select Insert (your choice of)
              Page from Scanner
              Page from File (select your PDF file)
              Blank Page
    You can then save as your first file or rename it

  • I need help with combining two pdf files together but it won't let me in the latest Acrobat DC?

    Hi,
    I had two ai files, 11 by 17 on separate pages, and made them into pdf's. When I combine the files, it will let one out of the two files go through. The funny thing is that it will let the larger file go through than the smaller file. The file that went through had been in  ai, dropped it into photoshop and put it back into ai again. The file that won't go through is a quote with different text. What should I do? What does pdf/a, pdf/x, pdf/e and preflight mean?
    Thank you

    Make sure neither of the PDF have been secured in some manner like password protection, form rights or forms distribution.
    Forms created with live cycle cannot be combined by Acrobat.

  • How do I merege 2 pdf files into 1 file

    How do I take two PDF files and merge them into one file

    In Acrobat go to File - Create - Combine Files into a Single PDF, then select your files and combine them.
    If it's just two files you can also open the first one and then use Tools - Pages - Insert From File to insert the second file into the first one.

  • How to update bookmarks when merging two PDF files?

    We have a company catalog that gets generated once a night.  It's three step process:
         Step 1)  A raw XML file gets generated from our main ERP software (Microsoft Dynamics).
         Step 2)  Then that raw XML file is ran against a stylesheet with XEP to produce a nice professional looking catalog.
         Step 3)  And the third step is a script that merges the front and back covers with the main catalog produced in step 2.  Each cover is two pages (front and back).
    My problem is when step 3 runs it produces a final catalog but all the bookmarks are off by 2 pages because the front cover adds two pages in the very beginning.  This post may be premature because up until now I've been merging the PDF pages with a program called "GhostScript" and it allows me to merge them via line command.  I'm just now trying out AcroExch.App COM Object for VBScript so I'll see if it works but wanted to fire this out for help to see if anyone has encountered this or can confirm if Adobe automatically updates them for you?  When I "Merge" the PDF files through Acrobat Pro they get updated automatically, so hopefully it will work the same way with AcroExch.App Object.   Thanks guy!

    I think you might be misunderstanding what I'm saying... we are not performing tasks for non-licensed individuals.  We purchased a copy of Adobe Acrobat Standard so we could create a PDF of our catalog.  That catalog we then put on our website and let people download it.  Since our products change all the time, we generate a new catalog every night.  The term "server" is just a place where a script runs, I could have it run on my desktop computer if that's really an issue but I think we're talking semantics.  Acrobat is not what produces the main catalog PDF, that is done through XEP when it runs through the raw XML produced by our ERP software every night.  The only thing we want Acrobat to do is an automated process to merge 3 PDF files together:  Front Cover, Main Catalog and Back Cover.  That's it.   Are you saying that is against the EULA of Adobe for us to do that? 
    Now for the bookmark problem, what do you recommend I do then?  When I merge all three of those PDF files in Acrobat Standard manually it works perfect.  All I'm trying to do is automate that process once every night.  I know how to automate with Acrobat, I just can't figure out how to fix the bookmark problem?

  • Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

  • How can I groupe several PDF's together in 1 file - without re-scanning all the documents?

    How can I groupe several PDF's together in 1 file - without re-scanning all the documents??

    Yes, as Bernd suggested you can download Acrobat XI 30 day trial from Adobe.com http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=en (Windows) to check if that meets your requirements.
    Regards,
    Deepak

  • How to compare two PDF files through PLSQL

    Hi,
    Can any body help that how to compare two PDF files through PLSQL programing and gives the differences as output.
    Thanks,

    Or simply apply an oracle text index on your pdf column:
    SQL>  create table t (id integer primary key, bl blob)
    Table created.
    SQL>  declare
    bf bfile := bfilename('TEMP','b32001.pdf');
    bl blob;
    begin
    dbms_lob.createtemporary(bl,true);
    dbms_lob.open(bf,dbms_lob.lob_readonly);
    DBMS_LOB.LOADFROMFILE(bl, bf,dbms_lob.getlength(bf));
    insert into t values (1,bl);
    commit;
    dbms_lob.close(bf);
    dbms_lob.freetemporary(bl);
    end;
    PL/SQL procedure successfully completed.
    SQL>  create index t_idx on t (bl) indextype is ctxsys.context parameters ('filter ctxsys.auto_filter')
    Index created.
    SQL>  declare
       mklob   clob;
    begin
       ctx_doc.filter ('t_idx', '1', mklob, true);
       dbms_output.put_line (substr (mklob, 1, 250));
       dbms_lob.freetemporary (mklob);
    end;
    Oracle® Database
    Release Notes
    11
    g
    Release 1 (11.1) for Linux
    B32001-04
    November 2007
    This document contains important information that was not included in the
    platform-specific or product-specific documentation
    PL/SQL procedure successfully completed.This generates a text only version of your pdf and standard text comparison methods can be applied ....

  • How do I merge 2 pdf files into one file?

    How do I merge 2 pdf files into one file?

    I use PrimoPDF (free download) to create pdf files. To merge two docs/pdfs/etc., print the first to a new pdf using Primo. Close it, then print the second and save it to the same new pdf. Primo gives you the option to 'append' or 'overwrite' the original file. By using 'append', you are just adding it to the back of the existing file. You can do this repeatedly to resort or combine existing pages into a new pdf.
    Also, I'm using Adobe Reader X.

  • Putting lots of different pictures into different pdf-files together

    hi there,
    my boss gave me a tricky task and I dont know how to solve the problem without some help. It's about putting lots of different pictures into different pdf-files together. May be you have some ideas how to succeed. Please excuse my german-laced english.
    My task is to merge (or put together) about 4-5 pictures into one pdf. the problem: i have 4.000 pictures. the advantage: the pictures that i have to merge are named pretty similar, it looks like:
    ab_pictures 1
    ab_pictures 2
    ab_pictures 3
    ab_pictures 4
    ab_pictures 5
    cd_pictures 1
    cd_pictures 2
    cd_pictures 3
    cd_pictures 4
    ef_pictu...etc.
    i have to merge ab-picuteres 1-5 to one pdf called "ab_pictures 1", cd_pictures to one pdf called "cd_pictures 1"...
    because there are so many picture-groups that i have to merge i was wondering if there is a possibility to automate this task by just telling the programm once what it has to, so it can do it without me sitting next to it, telling it each time what it should do next.
    this would safe me a lot (!) of time. Here at my working place there is adobe acrobat reader 9 running, there is also distiller available (I dont know what this appclication is used for).
    my question: is it possible to "programm" acrobat that i could do such a task automatically? Or do I have to buy other programms (may be a database-programm or something like that) to be able to it?
    thank you very much in advance for your expertise and please excuse my german-laced english.
    regards,
    scoutee1

    Two locations, for Acrobat Scripting, that may be helpful.
    #1. Acrobat Scripting here in the Adobe Forums.
    http://forums.adobe.com/community/acrobat/acrobat_scripting
    #2. Acrobat User Community's JavaScript Forum.
    http://acrobatusers.com/topics/javascript
    edit: above link is to AUC Learning Center content.
    The forum is at:
    http://acrobatusers.com/forums/acrobat-discussions-topic/javascript
    Be well...
    Message was edited by: CtDave

  • Compare two pdf files using adobe acrobat through command line

    Does anyone know how to compare two pdf files using adobe acrobat through command line. I want to do this via command line because we want to compare hundreds of file every day through some automated windows tasks.
    If command line option is not available in acrobat, then is it feasible to make use of acrobat javascript API to do this task?
    Any kind of help will be greatly.

    Command-line: Not possible.
    JavaScript: Possible, but very limited. Basically the only thing you can do is simulate clicking the Compare Documents button. The rest has to be done manually.
    However, it *might* be possible to automate this process a bit more using a plugin. Ask over at the Acrobat SDK forum for more information...

  • Merge two PDF files into one with Adobe Reader

    Does anyone know how to merge two PDF files into one with Adobe Reader. Is it even possible?
    Thanks

    If you've got a Mac and OSX you can do this in Preview.  Make sure you can see the sidebar with the first PDF opened, and then drag the second PDF to the bottom of the last page in the sidebar.  Also you can reduce the size of your saved file by selecting (or making) a Quartz filter to 'reduce file size'
    Cheers

  • How can I tranfer a PDF file to Word on my mac pro?

    how can I tranfer a PDF file to Word on my mac pro?

    There are a number of pdf converts for the mac.  Search macupdate.com or appstore for them.  Here's two developers that make pdf tools:
    Cycle Development
    Wondershare

  • Insert PDF into new Adobe Form - merging two PDF files into one

    Hi everyone,
    I need to enable access to archive PDF files but within a new PDF file containing header and footer.
    Request is not to change archived PDF files at all.
    I use Web Dynpro application to upload PDF file and to display new PDF file.
    I thought converting archive PDF files into JPG files and than using an 'Image Field' object to display those in a new PDF file.
    I am dealing here with PDF version 1.3 files.
    I am also having trouble converting these PDF files into JPG files. Any sugestions one this problem?
    Does anyone have any suggestion on how to deal with this concerning the fact that archive PDF files can not be changed?
    Is there some other way to merge two PDF files into one using Adobe Designer?
    Regards,
    Amel

    Hello, Lukasz:
      I am also facing similar requirement from my customer.
      And I found one useful blog, hope this blog can help you.
      http://wiki.sdn.sap.com/wiki/display/WDJava/CombinePDFfileswithWebDynproforJava
      Best regards, Nick.

Maybe you are looking for

  • Payment Document Reversed

    Hi Folks, 1.How to identify a reversed Payment Document ? Can we consider BKPF-XREVERSAL not equal to 1 or 2 ? 2.What is the difference between Reversed Doc and Reversal Document. Thanks, K.Kiran

  • Having 2 NIC Cards

    I have installed a second network card in my power G4 and I need to configure this card with a static IP; however, there is no where to do this (or at least I can not find it). I have the on board network card configured and working. Any suggestions?

  • Mac mail will not add new accounts

    Hi, Recently I added two new email accounts to my mac Mail Then the account started acting weird a few days ago-not letting me email myself (to a gmail account), refusing to put the email in the address field. Thats the email associated with my compu

  • TextEdit, Untitled Files, Got deleted

    I was opeing a file from a different drive and TextEdit gave me some kind of conflict issue. I failed to read it closely but when I canceled the dialog one of my "Untitled " files went missing from my Mac Pro. Just where are these files stored and ho

  • Do I REALLY Need Logic Express to Record???

    i wanted to get an audio interface and connect a mic. but i heard from somebody that i cant do that with garageband and i will need LE. is that true? will i have to an additional $200?