Creating a multipage PDF that prints 2 booklets side by side?

Hi I am a designer with NO pre-press experience and I need some help!
I am trying to print a booklet that is set at 8.5 x 7 as a 2 up document on 8.5 x14 paper. My problem is that I don't want the booklets to print consecutive pages (right now they would print 1,2 3,4 5,6 etc.) I want them to print side by side so that when the sheets are cut we would have 2 completed and collated books.
I know that I could just duplicate each page and print that, but I am wondering if there is a quicker way to make this happen? We have over 100 different multipage PDFs to print so I'm looking for a lean way to get this done.
Is this possible? Do I need to purchase pagination software?

When I need to do this I generally make a file set up as a single page (8.5 x 7, in this case) for easy design, then create a second, non-facing doc at two-up size (8.5 x 14) and place the pages from the first file int the second tow times so I have two copies per page. I use the Multi-page importer script for this: InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files

Similar Messages

  • How to create a PDF that prints at actual size for all printers

    I create printable educational products for teachers and homeschoolers.  I need to be able to make some printable PDFs that have cards set to a specific dimension, say 3" x 3".  When I create PDFs in InDesign and print them, the printer tends to shrink the PDF down.  This happens even when I set the Page Scaling to None.  But regardless of what my printer does, I would like to be able to create PDFs that print at actual size for anyone who purchases my products.  How can this be done?  Can I change the settings when I create the PDF?  Do I need to includes special instructions with my products?  Thanks so much for your help.

    You can specify the printing process in the PDF for Acrobat and Reader, open the PDF in Acrobat > file properties (right mouse click on the page) and in the extended tab (the most right tab) you can set printing not to scale for that PDF as default setting.

  • Creating a multipage pdf in photoshop CS4

    I've just upgraded from CS1 to CS4, and previously you could create a multipage PDF easily under the File>Automate menu. So how do you do that in CS4? The feature has been moved somewhere. I dont want two seperate A4's I want to learn how to create one document consisting of 2 pages.
    Thanks
    AC

    I most certainly would like to see the output to multi-page pdf feature re-included back into the file menu. For generic brochure type jobs, through to concept art presentations, and (Game) design documents, I really appreciated having that feature. It worked. Smooth.
    Bridge on the other hand, is shovelware. It lasts 3-4 seconds before locking up indefinately, and its a product of Adobe's ability to make fancy applications that dont really do anything useful, its NOT my workflow, and nor do I want it to be. I don't see the point in starting up another application, to do something that was always done well, from 2 maybe 3 clicks in the file menu.
    I really dont expect to swallow the cost of upgrades to find that I've had essential tools removed, and substituted for the joke that is "Bridge".
    Isn't this obvious? If its not broken don't fix it.
    AC

  • I need to create 4 A2 boards that print adjacent to one another with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards.Do I use illustrator (C3) or Indesign?

    I need to create 4 @ A2 boards that print adjacent to one another (all landscape format) with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards? Is it best to use Illustrator(CS3) or Indesign?
    Thanks.

    Re: I need to create 4 A2 boards that print adjacent to one another with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards.Do I use illustrator (C3) or Indesign
    If possible, please try Indesign CS 4.

  • IText - how do I create a multipage PDF?

    Can anyone tell me how to modify the code below so that if Component c has more content than one A4 page, all content is output to a multipage PDF.
    Thanks
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.awt.*;
    import com.lowagie.text.Document;
    import com.lowagie.text.*;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfTemplate;
    import com.lowagie.text.pdf.PdfWriter;
    public class PrintPDF {
         Component c = null;
         String documentName = null;
         public PrintPDF(Component c, String name){
              this.c = c;
              this.documentName = name + ".pdf";
              Document document = new Document(PageSize.A4,36,36,36,36);
              try {
                   PdfWriter writer = PdfWriter.getInstance(document,
    new FileOutputStream documentName));
                   document.open();
                   PdfContentByte cb = writer.getDirectContent();
                   PdfTemplate tp = cb.createTemplate(500, 500);
                   Graphics2D g2 = tp.createGraphics(500, 500);
                   c.paint(g2);
                   g2.dispose();
                   cb.addTemplate(tp, 30, 300);
              } catch (Exception e) {
                   System.err.println(e.getMessage());
              document.close();
    }

    Here is the working code for multiple page PDF for a JComponent
    import com.lowagie.text.Document;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfTemplate;
    import com.lowagie.text.pdf.PdfWriter;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JToolBar;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import java.awt.print.PrinterException;
    import java.awt.print.PrinterJob;
    import java.io.FileOutputStream;
    public class MultiplePagePdf extends JPanel implements Printable
        private JTable table;
        public MultiplePagePdf()
            table = new JTable(100, 10)
                public Object getValueAt(int row, int column)
                    return String.valueOf(row + ", " + column);
            JToolBar tb = new JToolBar();
            JButton printButton = new JButton("Print Table");
            printButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    PrinterJob printJob = PrinterJob.getPrinterJob();
                    if (printJob.printDialog()) {
                        try {
                            printJob.setPrintable(MultiplePagePdf.this);
                            printJob.print();
                        } catch (PrinterException ex) {
                            ex.printStackTrace();
            tb.add(printButton);
            tb.addSeparator();
            JButton saveButton = new JButton("Save Table");
            saveButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    saveAsPdf();
            tb.add(saveButton);
            tb.addSeparator();
            setLayout(new BorderLayout());
            add(tb, BorderLayout.NORTH);
            JScrollPane scrollPane = new JScrollPane(table);
            add(scrollPane, BorderLayout.CENTER);
         *  this method is copied from http://java.sun.com/developer/onlineTraining/Programming/JDCBook/advprint.html
        public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException
            Graphics2D g2 = (Graphics2D) g;
            g2.setColor(Color.black);
            int fontHeight = g2.getFontMetrics().getHeight();
            int fontDesent = g2.getFontMetrics().getDescent();
            //leave room for page number
            double pageHeight = pageFormat.getImageableHeight() - fontHeight;
            double pageWidth = pageFormat.getImageableWidth();
            double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
            double scale = 1;
            if (tableWidth >= pageWidth) {
                scale = pageWidth / tableWidth;
            double headerHeightOnPage = table.getTableHeader().getHeight() * scale;
            double tableWidthOnPage = tableWidth * scale;
            double oneRowHeight = table.getRowHeight() * scale;
            int numRowsOnAPage = (int) ((pageHeight - headerHeightOnPage) / oneRowHeight);
            double pageHeightForTable = oneRowHeight * numRowsOnAPage;
            int totalNumPages = (int) Math.ceil(((double) table.getRowCount()) / numRowsOnAPage);
            if (pageIndex >= totalNumPages) {
                return NO_SUCH_PAGE;
            g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
            //bottom center
            String pageNumber = "Page: " + (pageIndex + 1) + " of " + totalNumPages;
            int width = g2.getFontMetrics().stringWidth(pageNumber);
            g2.drawString(pageNumber, (int) (pageWidth - width) / 2, (int) (pageHeight + fontHeight - fontDesent));
            // Paint the header at the top
            g2.translate(0f, 0f);
            g2.translate(0f, -headerHeightOnPage);
            g2.setClip(0, 0,
                    (int) Math.ceil(tableWidthOnPage),
                    (int) Math.ceil(headerHeightOnPage));
            g2.scale(scale, scale);
            table.getTableHeader().paint(g2);
            g2.scale(1 / scale, 1 / scale);
            g2.translate(0f, headerHeightOnPage);
            g2.translate(0f, -pageIndex * pageHeightForTable);
            //If this piece of the table is smaller
            //than the size available,
            //clip to the appropriate bounds.
            if (pageIndex + 1 == totalNumPages) {
                int lastRowPrinted = numRowsOnAPage * pageIndex;
                int numRowsLeft = table.getRowCount()
                        - lastRowPrinted;
                g2.setClip(0,
                        (int) (pageHeightForTable * pageIndex),
                        (int) Math.ceil(tableWidthOnPage),
                        (int) Math.ceil(oneRowHeight *
                                numRowsLeft));
            //else clip to the entire area available.
            else {
                g2.setClip(0,
                        (int) (pageHeightForTable * pageIndex),
                        (int) Math.ceil(tableWidthOnPage),
                        (int) Math.ceil(pageHeightForTable));
            g2.scale(scale, scale);
            table.paint(g2);
            return Printable.PAGE_EXISTS;
         * This is where the table is saved as pdf
        private void saveAsPdf()
            Document document = new Document();
            try {
                PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("/tmp/table.pdf"));
                document.open();
                PdfContentByte cb = writer.getDirectContent();
                PrinterJob printJob = PrinterJob.getPrinterJob();
                PageFormat pageFormat = printJob.defaultPage();
                printJob.cancel();
                float width = ((float) pageFormat.getWidth());
                float height = ((float) pageFormat.getHeight());
                PdfTemplate tp;
                Graphics2D g2;
                // Assuming that the number of pages would be 3, You can calculate this same way it is calculated
                // in print (Graphics g, PageFormat pageFormat, int pageIndex) method
                int numberOfPages = 3;
                for (int i = 0; i < numberOfPages; i++) {
                    tp = cb.createTemplate(width, height);
                    g2 = tp.createGraphicsShapes(width, height);
                    this.print(g2, pageFormat, i);
                    g2.dispose();
                    cb.addTemplate(tp, 0, 0);
                    document.newPage();
            } catch (Exception e) {
                System.err.println(e.getMessage());
            document.close();
        public static void main(String[] args)
            JFrame frame = new JFrame("Multiple page pdf");
            frame.getContentPane().add(new MultiplePagePdf());
            frame.pack();
            frame.setVisible(true);
    }Edited by: ms_rahman on Feb 24, 2008 4:09 PM

  • Print booklet truncates right side of page in Snow Leopard

    I'm trying to upgrade to Snow Leopard, but my InDesign booklets clip the right side of a spread at 8-1/2 inches. I'm using an 8-1/2 x 11 paper size, landscape, with InDesign pages 8-1/2" tall and 5-1/2" wide.  The booklets print fine in system 10.5.
    I can print regular landscape pages fine. It's just the Print Booklet output. The Preview shows it as being correct.
    I thought it was my 10 year old Laserjet, but I just installed a new Laserjet and it has the same problem.
    I thought it was a problem with InDesign CS3, but I just downloaded a trial of CS5 and it has the same problem.

    Hi writingnorth,
    Is that the right hand side of the page after removing it from the printer?
    Is the text on that side missing or is it compressed? 
    Does the printer show any error messages?
    Also, please try the printhead clean to see what happens.
    I was an HP employee.
    Please mark the post that solves your problem as "Accepted Solution"

  • How do I create an accessible PDF that doesn't generate a "tagged annotations - failed" error on the Accessibility Checker?

    I just reported this as a bug to Adobe, as I think it is.
    ******BUG******
    Concise problem statement: URLs generated from InDesign CC failed on Accessibility Checker (problem also exists in 2014)
    Steps to reproduce bug:
    1. Generated URLs using hyperlinks panel in InDesign. When accessibility report is run, they are flagged as "Tagged annotations - Failed," listed as Element 1, 2, etc. The links are live and clickable.
    2. To test, I removed all hyperlinks in Acrobat. It passed the test.
    3. Then I used "Create Links from URLs." The links were re-created. Running the accessibility report brought up the same error message.
    Results: The links created by Acrobat that actually do work fail the "tagged annotations" report. You have provided the tools to check accessibility, but the program itself can't generate URLs that pass the report.
    Expected results: I should be able to easily create an accessible pdf, as your documentation says I can. This, along with the failure of your "articles" panel detailed in another bug report, strike me as a serious problem with InDesign that should be fixed soon, especially given that designers are required more an more to adhere to accessibility guidelines.

    I have call out boxes like this:  All the links work correctly but they are divided with a tag for each line:

  • Create an editable pdf that can be submitted by email

    I've figured out how to create an editable pdf in Adobe Acrobat Pro.  The pdf is a form to be completed.  Is it possible for the recipient to complete it, save the changes in Adobe Reader and email it back?  If not, what software do they need? (Acrobat?)

    iicatcher,
    You can!
    The commands are slightly different depending on the version of Acrobat. I'd recommend you see the following video and help topic:
    Video: http://infiniteskills.com/blog/2011/09/adobe-acrobat-x-tutorial-enabling-reader-users-to-s ave-forms/
    Help (Acrobat X): http://help.adobe.com/en_US/acrobat/pro/using/WS58a04a822e3e50102bd615109794195ff-7e0d.w.h tml
    Help (Acrobat 9): http://help.adobe.com/en_US/Acrobat/9.0/Professional/WS58a04a822e3e50102bd615109794195ff-7 e0d.w.html
    Note the limitations mentioned in the help topic.

  • Can I create a fillable PDF that allows the user to attach a file to the submitted form?

    There are suggestions in the Help documentation and on this site that indicate it is possible to attach files to a fillable PDF form that is being submitted. But I do not see any instructions for adding this functionality to a form. I am using Acrobat 9 Pro to create my form. I have a Submit button with an Action/Menu Item/Submit a form option, and the URL link for the submission is a local coldfusion file with a #FDF suffix. The export format is HTML. The form also contains a hidden EMAILTO field, with an Options/DefaultValue option identifying the recipient's email address. (I'm guessing the local cfm file uses this field.) There is also a hidden URL field in the form, and its Options/DefaultValue specifies the URL of the fillable form itself. (Perhaps the local cfm file uses this field too.)
    How can I add functionality to this form, using Adobe/PDF, to allow the user who submits the form to attach a file to the submission?

    You have to first configure a text field so it can be used for file selection. You do this on the Options tab of the field properties dialog. In order to select the corresponding check box, make sure only the "Scroll long text" option is selected.
    You then can set up a button that has the following JavaScript attached to the Mouse Up event:
    // Mouse Up script for button
    getField("upload_text_field").browseForFileToSubmit();
    Replace "upload_text_field" with the actual name of the file selection text field.

  • How to create a multipage PDF with same template but dynamically varying data?

    Hello,
    I need to create a multi-page PDF where I need to use the same template but dynamically varying data.
    Eg Scenario:
    1. I have data for 5 material in my ABAP program.
    2. I have a PDF template in SFP which has a 2 page structure.
    3. Based on the number of materials (5 in this case), I need to generate a PDF which will have 10 pages (2 for each material).
    4. the generated PDF should be like the one shown below:
    e.g.  MATERIAL_PDF (pdf name)  
          |  Page1(Mat1[View1].data)
          |  Page2(Mat1[View2].data)
          |  Page3(Mat2[View1].data)
          |  Page4(Mat2[View2].data)
          |  Page5(Mat3[View1].data)
          |  Page6(Mat3[View2].data)
             .. and so on...
    Thanks,
    Aniket

    Isn't it just by setting the two pages into a form ( like an subform in the content ) and put the settings in a proper way?
    There is this setting, that the masterpage comes up everytime the pagecount is done.
    Example
    Page 1 3 5 --> Masterpage 1
    Page 2 4 6 --> Masterpage 2
    And the designview with the flowing data, you can do it by scripting to get to the next page after the pos is finished.
    Unfortunaly I do not got a system atm, so I hope the explaination give you a clue, where to search.
    Regards
    Florian

  • Does creating Excel,Word,PDF reports & printing in Apex need licensing ?

    I am new to this Apex 4.0
    I have installed the Apex 4.0 with Oracle 10g database.
    Now using Apex if I create any web application, and develop some reports in the web application.
    1) Now to do the printing of the reports in Excel,Word,PDF does Apex need some other components to be installed ?
    2) Does those components needs licensing ? or are they free like Apex 4.0 ?

    Hi,
    Yes you need other components
    http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    Some of solutions need license, like BI Publisher.
    There is also free solutions using e.g. Cocoon, Jasper reports ...
    http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html
    http://www.poveravoce.net/blog/?p=85
    http://ubuntuforums.org/showthread.php?t=1004742
    http://daust.blogspot.com/2010/09/jasper-reports-integration-v1100.html
    ANNOUNCE:JAPEX Open Source PDF reporting & Blob Download/Flash upload
    Regards,
    Jari

  • Trying to create a "Combine PDF" that also has a "save as" dialog box

    I am able to get the Combine PDF to work but it just saves them as randomly named files on the desktop that I then need to rename manually. Is there some way to make a "save as" dialog box pop up after combining the files? So if I had a bunch of PDFs it would go:
    Right Click on selected files > Automator > Combine PDF > Save As
    Is this possible?

    Set up you worflow as:
    Get Selected Finder Items
    Combine PDF Pages
    Open Images in Preview
    Run Applescript
    +copy this into the Applescript box+
    tell app "System Events"
    keystroke "s" using {command down, shift down}
    keystroke "d" using {command down}
    end tell
    I also like to add a Sort Finder Items after the Get Selected Finder Items.

  • Can I create a Master PDF that pulls field values from multiple PDFs?

    I am designing a tracking system for a class and want to have the student fill out a basic information form that tracks personal information and individual test grades.  As an administrator, I want to have a master list that can track the entire class and pull in their grades, calculate class average, and order them accordingly.  Ideally, it would pull from a folder of these student PDFs.
    Does Adobe have a way to do this?  I have LiveCycle and Acrobat Pro.

    Thanks for the very prompt answer!  That seems like it sort of does what I want - however, once I leave the course, I want to have the system continue to work - and future Admins probably wont have access to Acrobat Pro, or the technical knowledge to send out looking for responses.  Nor is there a sharepoint (or equivalent drive) to set.  Perhaps some further explanation is required.
    There are multiple classes going on at one time, and each class gets a folder on a standalone machine, with a different Admin in charge of each class.  When one graduates, another one fills in behind them a week or so afterwards.  So what I need is a "template" file for student data, and a template "Master list" that pulls from all of the student data PDFs in that folder, locally, without the Master list having to send out requests for information.  That way, when a new class starts, the students can email in their student data, the Admin can pop them all in a folder with a blank Master List template, and when the admin opens the Master list, it populates with all the data from the student sheets.
    Hopefully that is a little clearer, and hopefully doable!  It really needs to be pretty darn simple.  We used to do it in Excel, and gave each student a tab where we copy/pasted their basic data - and a crosslinked sheet pulled it into the master list.  Alas, that looked unprofessional and sometimes was very troublesome when the students altered the Excel form in any way or put things in the wrong cells.
    Thanks!

  • Create an interactive pdf that works in Apple Preview (and Acrobat Reader)

    Hi,
    I've created a very large interactive document for a client in InDesign CS6, which has buttons that help the user go to various locations in the doc and back, and have only rollover states on all the buttons. The interactivity works fine in Acrobat Pro, but my client wants it to work in Apple Preview. How do I make it work in Preview? If I can also get it to work in Acrobat Reader that would be a bonus too.
    Any help would be very appreciated.
    Thanks!
    Gary

    Thanks Peter and UWE,
    Upon further testing, it appears that most of the interactivity seems to be working in Preview now, but some buttons do not show up correctly, whereas most of the others do.
    The ones that aren't showing up correctly are primarily on the main Home page. They are all rectangle buttons, with a photographic background in the button and the name of the link to the section on top of the button, like "introduction", "Product", etc. The button itself works in Preview, but the photograph placed in the button doesn't appear, all you see is the name of the the button without the image in the background.
    Any clues on how to fix this this?
    Thanks

  • Used to be able to create a multipage PDF in Preview

    What magic wand do I need to take 3 JPEGS and put them into a Preview document and save it as a single PDF with 3 pages? This used to be real easy in Preview but now I don't have a clue how to do it.
    Thanks!
    Scot

    From Preview Help:
    Move a page from one PDF document to another
    Open both PDF documents.
    For each document window, click the Thumbnails or Contact Sheet button, in the View control in the toolbar.
    Drag each page’s thumbnail image from its original document to the other document.A rectangle encloses the other document’s thumbnails when you drag over them. If you don’t see a rectangle, the pages won’t be included in the PDF file, but they do appear in the other document’s window.
    The page remains in the original document and is copied to the other document.
    I didn't try the procedure, so I hope it works for you.

Maybe you are looking for

  • Wildcards in gateway URL prefixes?

    Hello, We are using a proxying utility called EzProxy from Useful Utilities for controlling student access to online databases and catalogs, which use client-IP as it's security mechanism (basically if the requests come from our network it lets the c

  • AJ-1200-A settings

    Hi guys: I've been editing DVCPro HD, using a 1200A Panasonic deck. I've got a project using regular mini-DV footage, but I can't seem to find the menu settings to change to output of the 1200 to give me regular DV NTSC. when I got to the DV NTSC cap

  • Project Pro 2010 and full integration

    Recently I needed to resequence projectpro 2010 with app-v5. I know it's not a supported methode, but we publish project to users. Office 2010 is installed native on the OS. Ofc I used this article as a guideline. But still, project does not have ful

  • Does J2ME support GPRS?

    Hi, I am fairly new to J2ME and I would appreciate if you could help me with my questions. I am designing a wireless application. This wireless application is going to run in the background. The application is going to read data from the GPS (built i

  • Business process  is not yet planned in version 0/2010

    HI, In Timesheet entry in CAT2, i am facing the following error Business process EPI0001 is not yet planned in version 0/2010 Please help to solve it.