Combining Pages Files into a single document

I have looked for an answer to this but have not found a suitable solution. It's a pretty straightforward question. I have about 10 articles written in Pages and I need to basically compile them into a kind of book format (single document, continuous page numbers etc.). I know how to do this in MS Word, but can't work out how to do this in Pages. It is essential that I put this together in Pages because some articles have special formatting with end notes, images, sections etc. that can't be lost or messed up.
Thank you for your help!

Try *Swift Publisher* by Belight Software:
http://www.macupdate.com/info.php/id/18896/swift-publisher
This behaves exactly as you would expect.
You can grab pages in the thumbnails and freely shuffle them. You can also drag the thumbnail pages between documents. Using cmd-shift you can even do this with out-of-sequence pages.
There are plenty of other features as well that Pages lacks and it has a much better written and direct interface without the confusing convolutions of Pages.
As a bonus you get crop marks and the ability to impose exported files.
The templates are not up to Pages' standards but there is nothing stopping you recreating exactly what you have in Pages.
Peter

Similar Messages

  • Combining Pages files into a single PDF file

    I have produced a 6 page quarterly newsletter (containing texts and images and printed on one 11x17 sheet and 1 8/5x11 sheet)) for a small volunteer organization (Friends of the Library). Separate files now have been extracted from my page-layout template.
    I now want to give them in a *single PDF flle* to the web master of our organization’s web page for posting in serial-order display.
    Nothing I’ve tried by way of cutting and pasting these files into any word processing document (preliminary to PDF-ing them) seems to work in any satisfactory way.
    What to do?

    Hi RHPC
    Welcome to the forum.
    You can combine pdfs in the Preview application.
    Just open them in Preview and open the thumbnail sidebars.
    +Menu > View > Sidebar+
    then drag the thumbnails into one pdf and resave that.
    Peter

  • Hiding filenames when combining multiple files into a single .pdf

    I'm fairly new to this Acrobat X. I'm trying to assemble my portfolio to distribute to employers but I cannot seem to get rid/hide the filenames in the final pdf file. I was using the option to 'combine multiple files into a single pdf' because I was compiling images and documents to a single readable pdf file. I got all that done but once I open it, I'd see that each page would still contain the original file names rather than page numbers - which I prefer not to have employers see for the sake of tidiness (and I refuse to use the Adobe portfolio because it's not really efficient on space or design. I prefer a simple page-by-page pdf). So I was wondering if anyone can tell me how to hide my file names, change them into page numbers or getting rid of them all together so the 'Table of Contents' in the pdf preview mode would not show anything, I would really much appreciate it.
    -Ss

    Well, when the .pdf is in the final, deliverable form; I open it in Mac preview mode and the sidebar is always extended showing a 'table of contents' rather than having each document in the pdf file have a number designating a page name, it shows each individual filename the pdf is composed of. Not too sure about bookmark, though. Thanks for the reply!
    If you want, I can send the file to you.

  • Combining multiple files into a single PDF/A

    The issue brought up in another discussion is the loss of PDF/A conformity when “merging” multiple PDF/A files into a single file (I use PDF/A for preservation of corporate records). The “insert” option retains conformity but does not allow inserting multiple files in a certain order, unless you insert them one by one (which is a pain when you have 50 files to attach).
    The solutions I’ve come up with so far:
    1)     1)  In AAPro – combine files into a single PDF and then convert it to PDF/A using Preflight. This is easy, my only problem is that I don’t have AAPro (and AAStandard doesn’t convert to PDF/A).
    2)     2)  In AAStandard – combine files into a single PDF and then “print” to PDF/A. The problem of this “re-frying” is that it only creates PDF/A-1b (not 1a), bookmarks and OCR of scanned pages are lost, and files become significantly larger.
    I wonder if anyone knows a more intelligent way around this problem, provided that I only have AAStandard. Thanks!

    Well, when the .pdf is in the final, deliverable form; I open it in Mac preview mode and the sidebar is always extended showing a 'table of contents' rather than having each document in the pdf file have a number designating a page name, it shows each individual filename the pdf is composed of. Not too sure about bookmark, though. Thanks for the reply!
    If you want, I can send the file to you.

  • Combining FDF files into a single PDF

    Problem: I have 9 FDF files that were generated using a python script from within a database. The all refer to a common template PDF form. When I open each file the data is correct for each one. I need to be able to combine the 9 files into a single PDF document (9 pages long). This isn’t a onetime task, so the process needs to be easily repeatable.
    Ii tried opening each FDF then saving them as PDF’s, the ODF’s all look correct, each files containing the appropriate data. This issue with this is once combined all 9 pages reflect the data from sheet #1. It’s as if I’ve just pulled in sheet #1 9 times.
    I’m very new to the FDF format and am a little confused as to why this is happening.
    Any help would be very much appreciated
    Jon

    This is correct, and working as designed.
    If you use the same field name on two pages, they are the same field.
    So, if you combine two documents with the same field name, they are the same field, and will have the same contents.
    This is a key reason why PDF portfolios were invented.

  • Combine bmp files into one single pdf?

    I've got 76 scanned pages in bmp format, and need to print them. Ideas? I can't be bothered to select each one of them separately in Preview and click on Print, then OK 76 times...
    Many thanks.

    There are some Apple Script Folder Action scripts that will convert image files from one format to another, so you can drop a set of images into a folder and they will all get individually converted to another file format. I don't know if you can create a multi-page pdf bundle, unless you have PostScipt maybe, then you can just append all the ps files into one large multi-page PS file.
    Even working with Automator you will have to learn a little about scripting anyway. Typing text commands in Terminal isn't that much different. Fink is really not that hard to install and work with. You do have to learn a little about Terminal and how to execute comands from the shell prompt.
    I think the solution to your problem would probably involve a combination of an Apple Script that executes a Terminal command to run the ImageMagick convert utility, and I think that it could be attached as a Folder Action to operate on a group of files when you drop them into it. I am not sure if Apple Script or Automator can do this work all by itself. They are really just fancy GUI wrappers for the instructions to other programs to do what they do. By themselves they don't actually do the work, they facilitate the flow of the work to the appropriate tools. ImageMagick is one such appropriate tool for your image conversion problem.
    I have been thinking about setting this up to handle faxing out a multi-page pdf document that is created by scanning single pages as individual jpg images. Sometimes I have to fill out a form and fax it somewhere, and my scanner is a single sheet scanner. So that would be handy to drag and drop a few pages of jpgs to a folder and have the convert utility bundle them to a pdf and have Preview open it, ready for faxing. Now, I use Terminal to
    cd ~/Desktop (or folder that contains my scanned jpgs)
    convert *.jpg fax_file.pdf
    open -a Preview fax_file.pdf
    Then in Preview Print... and Fax
    I could fax right from the command line also, but I like being able to look at the document first to check for errors, and get the fax number from Address Book.
    I'll post back if I ever get an Apple Script/Folder Action working, but I am in the middle of upgrading to Tiger and backing a lot of files up, so I might not get to work on it for a while.
    Try out fink, there are lots of free software tools that you might find useful.
    G3 Desktop, SonnetEncoreZIF G4 1GHz, 768MB, WingsAV-6MB, DVR-106D, 120GB Maxtor   Mac OS X (10.3.9)   PCI-TempoUltraATA66 120GB, 60GB, TangoUSB/FW, ATI Radeon

  • How do I insert a .pages file into an openoffice document

    How do I insert a Pages .pdf file into an openoffice writer document?

    Hi Jim,
    Happy to help! If you've already combined a file using Adobe PDF Pack, you can open that combined file in the free Adobe Reader (or in Acrobat, if you have that). But, it sounds like you don't have either one installed, so that would be the best place to start. You can download the free Reader from www.adobe.com/products/reader.html. Or, if you want to try Acrobat free for 30 days, you can download that from www.adobe.com/products/acrobat.html. Either one will let you view PDF files.
    Some notes:
    You'll need Acrobat if you want to have some control over where new pages are inserted into an existing file. It lets you decide whether the new pages are inserted before or after a specific page. For example, if you have a 12-page document, you could choose to insert the new pages at the beginning, the end, or anywhere in between. (CombinePDF lets you determine the order in which files are combined, but not with that granularity.)
    Reader doesn't allow you to insert one file into another, so your workflow with Reader would be to use Combine PDF on Acrobat.com. You'd select both the previously combined file and the new file, give the combined file and name, and then click Combine. Then, you could view the combined file in Reader.
    I hope this all makes sense. It's a lot to take in. Please don't  hesitate to let me know if you would like additional help.
    Best,
    Sara

  • How to remove pages when combining 2 pdfs into a single document?

    I renewed my subscription to Acrobat for $89.99 in order to combine 2 pdf documents while removing a page from one. I used to be able to select the pages from a document prior to combining the 2 documents. Now there does not appear to be an option to select pages for combining... What am I missing?

    You said in your first message that you subscribed to Acrobat. Our replies were about Acrobat. Indeed, PDF Pack doesn't enable any of those things.

  • Acrobat Pro 9: "Merge files into a single pdf" creates blank pages

    I have a similar problem as a previous post (which hasn't been answered).
    I am able to pdf individual Word documents fine, but when I try to Combine > Merge files into a single pdf, the resulting pdf pages are all blank. I don't receive any error messages or have problems saving the file.
    I am using Adobe Acrobat Pro 9 (9.5.1) on Windows 7.
    The merging of pdf's hasn't worked at all since I installed the program.
    Any help would be much appreciated.

    Hi Bill
    Thanks so very much - you have solved the problem.
    I tried Document > Insert Pages and that worked.
    I then ran the "Repair" feature on Adobe which installed a few updates and I am now also able to merge pdf's by using the "Combine" feature and all the pages show the text/info.
    Thanks again for your help, it is very much appreciated.
    Thank you also to Apoorv for your assistance.

  • Append or combine multiple IDOCs into a single IDOC file

    Hi All,
    We are implementing multiple new payment types that will generate IDOC files for us to send to the bank.  To keep the cost to the minimum, the requirement is to combine multiple IDOCs to a single file.
    I'd like to know the most efficient way to complete this task.  Also, I am new to this forum, please let me know if I need to include additional information.
    Your help will be deeply appreciated.
    Thank you,
    Joanne T.

    Hi Milind,
    One way you can do this is generate each report in PDF or Postscript, and then use Adobe Acrobat Distiller to combine the files into one PDF document.
    Regards,
    Stewart

  • Acrobat XI PRO: Create a Table of Contents (TOC) automatically in top, after I have combined several pdf.files into a single pdf.file

    Hey
    I have now tried for hours, but now I give up!
    MY WISH -
    Create a Table of Contents (TOC) automatically after I have combined several pdf.files into a single pdf.file.
    I have already bookmarks, shown on the screen (see screenshot below) but I want those bookmark to be visualised in a separate TOC in the top of the combined files.
    This new TOC (which I have inserted) shall be printable and serve as a cover page in a binder.
    I have seen other cheap pdf.programs in the market (e.g. PDF Converter Professional 7.3) which are able to make the above things, easy, fast and nice.
    Regards
    Ole Bünger, Kristianstad Sweden

    Somewhat roundabout way but this should work:
    Is there easy way to print bookmarks Acrobat Pro 9.5

  • Combining multiple pages files into one file?

    Sorry if this is a dumb question, but I really did try to find the answer both in the Pages documentation and the forums and couldn't find even a similar question!
    I have a 90+ page document I created that contains many photo's, and other graphic elements. Because it was increasing incapacitating my computer, I decided to break the document up into separate files broken up by chapter. Now I have approximately 10 different Pages files that I would like to merge into 1 file, mainly to add page numbers. For the life of me, I do not see a simple way to combine these files into one. Can someone please help? Thank you in advance!
    Craig

    It's a common enough question that I saved my first response to such a question & modify & reuse it as needed. The problem with searching these forums/fora is guessing the exact word to use.
    Open your files & show thumbnails. Sections have a yellow border around all of the pages in that section. Now click on the page in the thumbnail pane & copy. If the file is more than one page & you only want one, you'll need to insert a section break to separate the pages. Then go to your other file, click in the thumbnail pane & paste. The whole copied page will be pasted in. Repeat with another section. Styles will copy over with the sections but headers & footers will not.

  • How do I combine several pdf files into a single file (MAC OS)?

    How do I combine several pdf files into a single file ?
    MAC OS 10.6.8
    Adobe Reader 11.0.10
    Signed: Ken, in Utah

    Not possible with Reader. You need Acrobat or a subscription to something like PDF Pack to do it.

  • How do i combine multiple pdf file into a single pdf file?

    how do i combine multiple pdf files into a single pdf file?

    The thread was started in early March and it's Mid-April, I know this very well. The OP of this thread posted a very common and simple question or maybe he/she would have resolved this. For an Adobe Acrobat user it's not at all difficult to combine multiple PDF files into one. But to combine PDF files full version of Adobe Acrobat is mainly required, otherwise PDF files can't be combined. For example, I'm using Adobe Acrobat 9 Pro. These simple steps are mainly required to combine PDF files:
    Open Adobe Acrobat.
    Click on Combine and click on Merge files into a single PDF.
    A window will be appearing, click on Add Files and select the PDF files you want to combine.
    Arrange the selected files in any order with the help of Move Up and Move Down button.
    Now click on Combine File and the selected PDF files will be combined within a few seconds.
    A new PDF file will be created. Click on Save As and name this new PDF file. Then, click on Save.
    A new PDF file will be created and all the selected PDF files are combined in it. The steps shown above might be different in other versions of Adobe Acrobat. Other than this, some third-party PDF merge software are also available. Most of them are available with a demo version for free evaluation. I've heard much about SysInfoTools PDF Merge software on other forums and directories and it's demo version is freely available. One may check its demo version if Adobe Acrobat (full version) is not available.
    Regards

  • Combine multiple CSV files into a single multi-column CSV file

    Hey Scripting Guy!
    I have what is probably a simple issue, but I haven't been able to find the right answer.
    I have 18 CSV files that each contain the same header and a single value as shown below:
    "Sum"
    "90"
    These files are the results of SMTP traffic by domain.
    All I want to do is to combine the 18 CSV files into a single file with the content of each file in a separate column, using the file name as the column header.
    For example:
    file1.csv
      "Sum"
      "90"
    file2.csv
      "Sum"
      "325"
    file2.csv
      "Sum"
      "3534"
    The desired ouput is:
    "file1.csv","file2.csv","file3.csv"
    "Sum","Sum","Sum"
    "90","325","3534"
    I don't need to row of Sum's if it is easy to leave out.  It would be even better if this could be put into an Excel spreadsheet.
    Thanks for your help!

    Can you post your script?
    If you are not a technician and do not want to write a script then you should try hiring a consultant.
    If you want to learn how to write a script then start here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    By the way...your request makes no logical or technical sense.  What is the point of doing this?  There is no relationship between these files.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • How to include XML Prolog in BPEL SOAP message.

    Hi, I'm using SOA Suite 11g on WebLogic and have a BPEL Process in a composite application that is calling a third party SOAP Web Service. Whilst it is standard for a SOAP service to not care whether or not the SOAP message includes an XML Prolog (<?

  • Ipad not found when connected to laptop

    Ipad not found when I connected to laptop and itunes

  • Soa-infra-wls WARNING -- javax.jms.JMSException: [JMSPool:169803]

    Hello Experts: Env: Sun Solaris 10 Web Logic Server 10.3.6. SOA 11.1.1.1.6.0 2 Node Cluster -- Installed WLS, SOA and went fine -- soa-infra-wls STATE is "Active" and Health shows as "Warning". -- I do see the below @ SOA MAnaged Server logs ========

  • Regarding mail attachment

    hi, i got a new requirement where i need to send  2 excel files as an attachment.. Up to know i have a idea of sending one file as an attachment... Please help me... How we will attach 2 excel files as an attachment and sent it to recipient. Nice ans

  • Cannot open organizer in elements 12

    Downloaded/installed elements 12 but im unable to get the photo organizer to work. Updated flash player/computer, reinstalled elements 12 but no luck.