How to print multiple small pages on 1 sheet of paper without changing size

I have a document 85x110mm which I want to print *at exactly that size* 4 times on a sheet of A4 paper. I have duplicated the pages in the document (so there are 4 of them) and in print -> layout I can choose that they all go onto one sheet. BUT they get resized. In print -> paper handling there is an option 'destination paper size' (sounds hopeful...) where I can choose 'document paper size: letter' or 'scale to fit paper size: my custom 85x110 page'. The paper size isn't letter; it's 85x110mm; and my default paper size is A4. The first option seems to lay out the pages to letter, but resizes them anyway, and the second option lays them out to A4, but resizes them. Where's the missing function which lets me *keep everything at the correct size*?
Possible workaround: if I can lay out the 4 pages on one A4 page that would do - but I need to specify their exact layout in centimetres. I tried modifying a business card layout, but it seemed to want me to set the positions of every element in every card manually. I can't do that precisely enough.

Hello
I know that Pages is using its own algorithm to resize pages when it put several of them on a single sheet.
This is why I use this tip.
I draw a rectangle whose size is supposed to be the final one.
I give it a white background and a black border whose thickness is set to one point.
For the tests I just insert three page breaks so that the document is a four pages one.
I print it as is.
Doing that, I may measure the printed rectangle.
Of course, at first attempt it doesn't match the required size.
It's easy to compute the required adjustments.
When the correct factor is reached, it is easy to build the complete document so that it prints the correct size.
Doing that I never got odd results but maybe it's because I am a lucky guy.
Of course, disagreeing with one advice doesn't mean that I don't respect it.
I respect your opinion, _on other matters too_
Yvan KOENIG (from FRANCE mardi 6 mai 2008 17:24:09)

Similar Messages

  • Print multiple pdf pages to one sheet of paper

    I want to print a 70 page pdf file but don't want 70 pages.
    I want 4 of the pdf pages on one sheet of paper, and I would really like to double side.
    This is what I'm working with (and not having any success in getting what I want)
    Help?
    Printer: HP Officejet 6500A Plus all in one
    PDF version 4.0.65
    Windows 7
    This question was solved.
    View Solution.

    Hi,
    That can be done easily using the Booklet feature of the printer driver.
    Open the PDF in Adobe Reader, then clcik on File > Print.
    Click the Properties button.
    Within the Layout tab check the radio option next to Booklet, you may keep the draw borders box checked or uncheck it as you prefer.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Is it possible to print multiple InDesign pages on one sheet?

    Say I have a 10 page InDesign document. Each page is fairly small. When I go to print out those proofs, can I print all 10 pages on one sheet of paper? Or do I have to copy each layout separately onto a new document to group them? Just to save paper really.
    ID CS3

    Daniel Flavin wrote:
    I agree. That's not gonna happen even with Feature Request...everybody loves drop shadow...
    are you kidding me?
    That horrible drop shadow bar adds no value to thumbnail prints and causes designers to have to trim the prints to the thin line page edge that prints. With the bar under the thumbnail, it interferes with page design decisions, which is really the whole point of printing thumbnails--to save paper while quickly evaluating the design of the page.
    It would also be helpful to have thumbnail print options galore, for printing miniature booklets with pagination controls, etc., for little samples we could give to our clients.
    If the InDesign software engineers would add realistic drop shadow controls for thumbnails, that would be fine. But designers still want the ability to turn off the thumbnails.
    KILL THE WORTHLESS DROP SHADOW BAR AND PLEASE GIVE US MORE THUMBNAIL PRINTING OPTIONS.

  • Tutorial on how to print  multiple output pages

    Hi,
    I am rather sad that this forum does not provide a simple principle on how to printout multiple pages to newbie.
    Below is a short contribution from me on how to print across multiple pages, other reader are also encourage to modify the code to provide more robust tutorial .
    * How to use java to print across pages that are more than one
    * Short contribution to java forum by Eric gan (Malaysia)
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.print.*;
    import java.awt.Graphics2D;
    import java.awt.print.*;
    import java.awt.print.Book;
    import java.awt.print.Pageable;
    import java.awt.Graphics2D;
    import java.awt.Graphics;
    public class Example implements Printable {
    //--- Private instances declarations
    private int row_cnt=30; // set the total number of row per page
    private int cum_row_cnt=30; // set the counter to record total number of row per page to determine
    // whether maximum pages should be increase depending on the programme requirement
    private int max_pg=0; // set the maximum number of page
    public Example () {
    //--- Create a printerJob object
    PrinterJob printJob = PrinterJob.getPrinterJob ();
         printJob.setPrintable(Example.this);
    if (printJob.printDialog()) {
    try {
    printJob.print();
    } catch (Exception PrintException) {
    PrintException.printStackTrace();
    public void paint (Graphics g) {
    Graphics2D g2d;
    g2d = (Graphics2D) g;     
    int x=10;
    int y=10;
    for (int outline=0;outline<=160;outline+=20){
              if (y>cum_row_cnt){
              cum_row_cnt+=row_cnt;//counter should grow by value equal to row_cnt
         max_pg++;
         g2d.drawString("outline value ---> " +outline , x, y);
         y+=10; // to set the row printing interval      
    } // end of paint procedure
         public int print(Graphics g,
    PageFormat pf, int pi)
              throws PrinterException {
    // normal routine to check when should java stop the print looping
    if (pi >max_pg) {
    return Printable.NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D) g;
         int fontHeight=g2.getFontMetrics().getHeight();
         int fontDesent=g2.getFontMetrics().getDescent();
         double pageHeight = pf.getImageableHeight()-fontHeight;
         double pageWidth = pf.getImageableWidth();
         // setting for the translate and graphics clipping to enable printing on output pages
    // row_cnt can be equal to pageHeight
    // in this examples assumming pageHeight=20 rows           
         g2.translate(pf.getImageableX(), pf.getImageableY());
    g2.translate(0f,-pi*row_cnt);
    g2.setClip(0, (int)(row_cnt* pi),
    (int) Math.ceil(pageWidth),
    (int) Math.ceil(row_cnt));
    paint(g2);
    return Printable.PAGE_EXISTS;
    public static void main (String [] args) {
    Example example = new Example ();
    System.exit (0);
    Thank

    Hello
    I know that Pages is using its own algorithm to resize pages when it put several of them on a single sheet.
    This is why I use this tip.
    I draw a rectangle whose size is supposed to be the final one.
    I give it a white background and a black border whose thickness is set to one point.
    For the tests I just insert three page breaks so that the document is a four pages one.
    I print it as is.
    Doing that, I may measure the printed rectangle.
    Of course, at first attempt it doesn't match the required size.
    It's easy to compute the required adjustments.
    When the correct factor is reached, it is easy to build the complete document so that it prints the correct size.
    Doing that I never got odd results but maybe it's because I am a lucky guy.
    Of course, disagreeing with one advice doesn't mean that I don't respect it.
    I respect your opinion, _on other matters too_
    Yvan KOENIG (from FRANCE mardi 6 mai 2008 17:24:09)

  • Is it possible to print multiple days on the same sheet of paper in iCal

    I want to make my own day to day calender and don't want to have it be huge. I was trying to print in day view but want to put 4 days on each page and I cannot figure it out.
    Please help.

    File > Print has an option to print by View (Day, Week, Month or List). Experiment with the List View to see if it meets your needs.

  • FW CS5: Copy Page from one document to another without changing layers

    Hi,
    how can I copy a Page from one document to another without changing the layers?
    Drag-and-drop isn´t possible and by Copy-Paste all elements are placed in the same layer.
    Greetings,
    toho

    Use File > Import.
    Open the File, then navigate to the page you want to import
    Be sure to select Insert after current page, or FW will just import the content into the current page itself.

  • How to print multiple footers for each page in RTF template xml report.

    Hi,
    How to print multiple footers for each page in RTF template xml report.
    i am able to print ( two sets ) ...
    up to last page ( one template ) and for last page ( another template).
    i want to change the footer information based on the group value printed in the report ( it might be 5 to 6) In every report run.. can you please check and let me know do we have any feasibility to achieve this.
    Thanks in advance.
    Regards,
    KAP.

    You can remove all other logic, like last page only contents (start@last-page:body), etc and section breaks if any you have inserted manually.
    Just have for-each@section logic.
    It would be difficult for me to guess what you have done without looking at your RTF or describing here.

  • How do you get rid of white space when you are printing multiple pages to one sheet of paper?

    How do you get rid of extra white space when you are printing multiple pages to one sheet of paper?  When printing multiple pages to one sheet of paper Acrobat won't let you select the "zoom" for printing.
    Thanks

    Take a look at Quite Imposing.

  • How to print multiple copies on one page ?

    How to print multiple copies of one document on one page ?
    in coreldraw I used to make the document -for example a business card 5x9 - and when sending to print it automatically placed the number of cards that would fit in my A4 sheet.
    how do I make the same operation in Indesign.
    thanks

    Hi, Peter S.
    >I can see that as a shortcut to printing a page of different cards for multiple people, but to do a simple n-up of a single card it seems overly complex to me. What am I missing?
    * It's just an alternative to copy/paste and step/repeat.
    * For a one-time only use, perhaps it's a little more complex than necessary. But for any future needs, only the content of the data file needs to be changed, either by editing, or by pointing to a new data file. If different cards for multiple people becomes necessary, it's ready to go.
    Regards,
    Peter Gold
    KnowHow ProServices

  • How can I print multiple pictures on a single sheet?

    Today 3/27/2012 I tried downloading HP software that says it has a new feature that allows printing multiple pictures on a single sheet of photopaper.  The download started and halted at only one square and sat there flashing for hours, meaning it wasn't downloading on my Pavilion desktop computer.  Since it's a new feature (apparently), no wonder no one as yet has asked this question and so I doubt if anyone has the answer.  But, I'll wait to see.

    You are probably going to get help by posting in the iPhoto forum. You can easily locate it by clicking on Apple Support Discussions on the top left of this page then navigating to the iPhoto forums.
    Roger

  • How to print envelopes in pages, How to print envelopes in pages

    How to print envelopes in pages, How to print envelopes in pages

    I presume you are using the Pages application, is that correct?
    So start off by launching Pages and choose one of the regular envelope styles. Traditional works well for me.
    Next go to the File menu and select Page setup. From the menu that says Paper Size select Manage Custom Sizes. In the resulting dialog, there should be a button on the left labeled "+". Click it. In the Paper Size area, select Width 5 in and Height 7 in. Name the size (where it says "untitled" something descriptive like "5 x 7 envelope". Click the OK button. The Paper Size menu here should now say the description you gave it. Click OK again. Your work area should now be a 5 x 7 envelope.
    Best of luck.
    PS If you are using Word or some other program, the process is probably the same or very similar.

  • How to print 2 sided pages brochure

    how to print 2 sided pages brochure

    Hello kaskasnikola,
    I understand that you need to print 2 pages per page.
    1 Open the printer driver, and click the Finishing tab.
    2 Select the number of pages per sheet from the Pages
    per sheet drop-down list.
    3 Select the correct options for Print page borders,
    Page order, and Orientation.
    4 Click OK.
    If you are having any problems please post on our printer forums.
    Here is a link to the forum.

  • Print multiples of the same image on one paper. I tried to change the layout to 9 per page, but it's only showing up and printing one per page, though it is the size i would like. But only one image is showing up as opposed to 9

    I'm trying to print multiples of the same image on one paper. I tried to change the layout to 9 per page, but it's only showing up and printing one per page, though it is the size i would like. But only one image is showing up as opposed to 9. HELP!!Version 7.0 (826.4)
    I'm using Preview Version 7

    Hello @kgingeri1, 
    Welcome to the HP forums.
    If you have sent a test print via ePrint, and experience this issue, i would call the Cloud Services department.
    If ePrint works fine, it is definitely a Google Cloud Print issue.
    Also, when you print from your android device, are you using Google Cloud print or the HP ePrint app?
    Please call our Cloud Services at 855-785-2777.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Hours:
    Mon-Fri. 8am - 11pm, Sat. 9am-8pm - EST
    Mon-Fri. 7am - 10pm, Sat. 8am-7pm - CST
    Mon-Fri. 6am - 9pm, Sat. 7am-6pm - MST
    Mon-Fri. 5am - 8pm, Sat. 6am-5pm - PST
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • How can I print multiple (4) pictures to a sheet using photoshop Elements 4.0?

    I have had to reload the software for Photoshop Elements 4.0 onto my new computer and I'm having trouble figuring out how to print multiple pictures to a sheet.

    Launch the software,select the images you want to print and then go to File->Print.The print dialog box will open up.Choose the print size from the dropdown and then print the images.

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

Maybe you are looking for

  • 1 time...[b]Problem Report for iTunes[/b]

    Problem Report for iTunes on a G4 / 733 MHz + 512 SDRAM Date/Time: 2007-04-05 23:04:45.675 +0300 OS Version: 10.4.9 (Build 8P135) Report Version: 4 Command: iTunes Path: /Applications/iTunes.app/Contents/MacOS/iTunes Parent: WindowServer [53] Version

  • TV as Monitor replacement???

    My viewsonic monitor is about to die and wondering if I can/should consider a TV as my computer monitor?  My desk 'cutout' for a monitor is just shy of 19" wide.  thoughts?

  • Display Profile location in 10.8

    I've created a new display profile under the Color tab in Display options.  If I highlight the new display profile name, it tells me the location is ~/Library/ColorSync/Profiles.  However, I'm not seeing it in there.  Am I missing something here? Is

  • Removing previous versions of Adobe Photoshop Elements

    I have Elements 10 and would like to remve versions 8 and 9 from my computer without losing any pictures.  Do I uncheck the " Remove downloaded content" box? 

  • 5800 Xpress Music speaker function

    Hello, I was wondering if there is any solution on the issue that when the speaker function on 5800 Xpress Music is activated the microphone of the phone makes the interlocutor hear the conversation interrupted or with large differencies in volume. C