Creating a document with different page sizes.

I'm trying to produce a leaflet with different pages sizes. To try and explain what I mean I have included a picture of what I'd like the front cover to look like. When producing a booklet there doesn't seem to be a provision to individually alter each page size in the pages or document set up panel. Is there anyway around this or do I have to create each page seperately, export to pdf and then combine into the leaflet? Help gratefully received. tomas

The build booklet feature is for very basic booklets, not something like this.
Sorry, but you’ll need to make everything full size and then do the cutting.
Bob

Similar Messages

  • How to create a report with different page sizes

    Hi,
    I would like to create a report with different page sizes, it's possible to do it with diadem?
    When I change the layout parameters, changes afect to all sheets...
    Is there a way to change page size individually for each sheet?
    Thanks in advance.
    Marc

    Hi Marc,
    You can use the DocStart and DocEnd commands along with the PicPrint command to spool multiple print commands to the same output PDF file using the direct printer approach.  This should enable you to programmatically specify the page size differently for each sheet that you add to the print job.
    ' Print PDF Page by Page.VBS
    OPTION EXPLICIT
    Dim i, Path, OldPrintName
    Path = AutoActPath & "2D Stacked"
    Call DataDelAll
    Call DataFileLoad(Path & ".TDM")
    PDFFileName = Path & " Page by Page.pdf"
    IF FileExist(PDFFileName) THEN Call FileDelete(PDFFileName)
    OldPrintName = PrintName
    PrintName = "winspool,DIAdem PDF Export,LPT1:" ' Set to PDF printer
    PDFResolution = "72 DPI" ' "2400 DPI" , "default"
    PDFOptimization = TRUE
    PDFFontsEmbedded = FALSE
    PDFJPGCompressed = "high"
    PrintOrient = "landscape" ' orient paper
    Call PrintMaxScale("GRAPH") ' auto-max, see alternative margin setting variables below
    PrintLeftMarg = 0.181
    PrintTopMarg = 0.181
    PrintWidth = 10.67
    'PrintHeigth = 7 (read-only)
    Call WndShow("REPORT")
    Call DocStart ' Begin multi-page document/print job
    FOR i = 1 TO 4
    Call PicLoad(Path & ".TDR")
    Call GraphSheetNGet(1)
    Call GraphSheetRename(GraphSheetName, "Page " & i)
    Call PicUpdate
    Call PicPrint("WinPrint") ' Add a page to be printed
    NEXT ' i
    Call DocEnd ' End multi-page document/print job
    PrintName = OldPrintName
    Call ExtProgram(PDFFileName)
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Fail to create PDF from 2 templates with different page sizes

    Hi,<br /><br />I am having problems to create a PDF with multiple page sizes and using 2 templates.<br /><br />I have to create a PDF using two dynamic templates. The second template has multiple pages, some A4 some A3, which I select through subforms (A3 specific subforms are on an A3 page).<br /><br />So:<br />^job <mdf1> -zOut.pdf<br /><fields><br />^form <mdf2>.mdf<br />^page 2<br />^group G_heading_A3<br /><fields><br /><br />The templates on their own are ok, but when I combine them the second is always A4, even if a) the subforms are on A3 (heading_A3) and if b) the page is A3 (page 2).<br /><br />I couldn't find anything on the web nor in the documentation. Does anyone have a clue?<br /><br />Thanks, Edward

    The build booklet feature is for very basic booklets, not something like this.
    Sorry, but you’ll need to make everything full size and then do the cutting.
    Bob

  • Creation of PDF with different page sizes

    I am generating PDF using Acrobat Distiller from my application from the .ps file. From one machine, the PDF is generated with different page sizes.one page with 8.5*12.99 and other pages with 8.5*11 in the same PDF. However the PDF is created with correct page sizes for all the pages in another machine. The only difference between the machines is the Internet Explorer version. I am using Internet explorere 11.0 and the other machine have a version of 8.0 installed.
    Why the difference in page size occured? Is there any dependency on the Internet explorer used while creating the PDF using Distiller? Any help for the issue with the discrepancy in the page sizes is really appreciated.
    Thanks!

    Acrobat Distiller uses the page size in the PS file. May be a problem of your application which create the PS file.

  • Creating a .pdf with different page views

    I'm tyring to create a .pdf with different page views.  For example as the viewer goes through the .pdf some pages I would like viewed as "single page view" and others "two page view".  Is this possible?   I'm working with Adobe Acrobate Pro.  Thanks for any suggestions.

    It's possible to use the Page Open actions to trigger a view mode change but it's messy - if the user tries to override them because they prefer to zoom in, etc. then they'll get very annoyed when things keep resetting.
    To create a Page Open action, open the thumbnails panel, right-click on a page, choose Page Properties, then the Actions tab. You can use the Execute a Menu Item tool to fire one of the view modes.

  • Viewing a PDF document with uniform page sizes:

    As part of our month end reporting, the members of our team PDF several Word, Excel and PowerPoint documents and someone combines them into one PDF document using Adobe Acrobat X Standard.  The combined document is sent to the Board of Directors. We are finding that while the document prints fine, when we/the Board are viewing it on our laptops, ipads, etc. some pages fit one full page to a window, while others are too big and some are tiny.  I know that when I am viewing it I can click the ‘fit one full page to window’ icon, but I can’t seem to save it like this so that the Board can also view it like this.  Is there a way to achieve this uniformity by adjusting certain settings at the time of PDFing the individual Word, Excel and PowerPoint documents or at the time we are combining? Any help would be sincerely appreciated.

    The program I use to create the TIF files (OpenText's eDOCS Imaging) does not make PDFs, it makes TIFs (and TIFFs).  To then convert this, if I try to do it through Adobe directly, I get an error which prompts me to open it in the native program and to choose print and then select the adobe printer.
    This works perfect if every page is the same size, but many times my documents have many different page sizes  as well as portrait and landscape within the same document (but that is a separate option).
    Doesn't Adobe have a "use the original page size / orientation" as an option when creating PDFs from existing documents?

  • Creating a list with different row sizes...

    I'm new to AS 3.0 and CS4 and I've been getting up to speed
    on all of it. I've used the List component before with my own
    CellRenderer. I now need to create a list with different row
    heights. The List component is great and does everything that I
    want but it requires all rows to be the same height.
    I'm unsure of where to go. Creating my own class seems like a
    lot of work. The TileList and Grid components don't allow different
    sized (and dynamically changing) row heights either. Is there some
    base class (SelectableList? BaseScrollPane?) that I should extend
    or do I need to just bite the bullet and write it all from scratch?
    I need each row to have it's own height and interaction with
    a row could change the height of the row. The main use is a list of
    data. If the user clicks in an item, it turns the display into
    something they can edit (which will need more height).
    Thanks for any thoughts on a direction I should think about.
    By the way, I really like that AS 3.0 is much more consistent of a
    programming language than previous MX versions that I've used.
    We're doing a lot of AS/Flash/AIR work with it and it's turning
    into a wonderful environment...

    Any ideas about this??

  • Can't process a batch with different page sizes. - Acrobat X Std / Windows 7 Ent. / Fujitsu-fi-6140

    Unable to scan Letter and Legal pages in the same batch, the output is either all legal or letter. Need to detect page sizes and scan them as what they are into a single PDF file.
    OS - Windows 7 x64 Enterprise
    Adobe X Standard
    Scanner - Fujitsu fi-6140
    Please help.
    Regards
    Abhinav

    Hi Test Screen Name,
    While reproducing the problem I realized I was in error as to how far in the sequence the problem occured. I actually do get as far as batch creating PDF,. The only difference there is that I can no longer "drag and drop" files in the batch create window. I have to use the "Add files..." command in the upper left of the batch create window.
    So, the application batch creates the files. Afterward, I use the Action Wizard to batch "Password Protect" the files. It is during this command run that the error occures. (Note: I am trying to save over the old files by having them save to the same directory under the same name, just like I used to be able to do.) The error I get is:
    Action Completed.
    Saved to: \\HOME\path-to-original-files\
    Warning/Errors
    The file may be read-only, or another user may have it open. Please save the document in a different
    Document: Name of document1.pdf
    Output: Name of document1.pdf
    The file may be read-only, or another user may have it open. Please save the document in a different
    Document: Name of document2.pdf
    Output: Name of document2.pdf
    The error message loops through all the documents. I don't have the documents open or in use. By default they shouldn't be "read-only". This all did not occure when I previously used the application with Windows XP.
    I have not yet tried saving them to a different directory. I will try that later today. (I didn't want to have a lot of versions of the same documents, it tends to be confusing.)
    Thank you for your reply,
    TPK

  • Save FrameMaker Book as PDF - Files with different page sizes

    I've created a book with 2 files - the pages in the first file are 8.5 x 11, the pages in the second file are 8.5 x 14.
    How can I save the book as a PDF but keep both page sizes? Right now if I change the page size in the PDF settings dialog, it changes all pages.
    Thanks.

    Something's not right. Try this route then:
    1. Use the Print Book option and have the AdobePDF printer instance selected, turn off the the Print to File, enable the "Generate Acrobat Data" option.
    2. Click the PDF Setup button to ensure that the Page size is set to the largest (as in the previous message),
    3. Then click the Setup... button to configure the printer for the largest size required.
    4. Then click the OK button to get back to the Print Book and finally click Print.
    5. You should be prompted where to place the file (unless you left the default configuration which may place it on your desktop).
    This should have all the pages correctly cropped as in the following sample with Letter, Legal and Tabloid all in one book:

  • How to find page sizes in a document with multiple page sizes

    Hi Ive been given a document that has multiple page sizes in it how do i find the size of each individual page. i tried document setup but that only brings up the size of the first page

    You are going to do that for each page? You might be better off with using the Preflight panel. "Page size" can be flagged as an error, so you get a nice linked list.

  • Creating Apprisal Document with different templates

    Hi Friends
    I am trying to create appraisal documents for employees.  How can I manage this for 1000 employees and my LSMW is not considering the VA(Appraisal Template ID), so I need to create seperately.
    Experts kindly suggest how do we normally create appraisal documents for a group of employees on a quarterly basis.
    Please help
    Regards
    Surya

    Hi Surya,
    With the new appraisal system, you have transaction PHAP_PREPARE that allow you to create multiple appraisal documents at once.
    You can create them using wizards to select the appraiser/tenmplate/appraisee, or using the organization unit.
    Hope this help
    Sarah

  • How can I create one pdf from a FrameMaker Book with mixed page sizes.

    Looking for an easier way to create one pdf from a FrameMaker book that has files with different pages sizes; letter and tabloid.
    So far, I have not been able to find a way to set up the Adobe PDF printer or Distiller to read the page size from the source files in the book and then create one pdf with the appropriate page sizes based on the file sizes in the FrameMaker book. I can create a pdf of the book using a multi-step process where I create a pdf for each page size and then combine them into one file. This is a lot of work.
    Is there a way to set the Adobe PDF printer where it reads page size from the source files and then creates one pdf with a mixed page sizes?
    Using FrameMaker 7 and 10 and Acrobat X Pro.
    Thanks for any suggestions

    http://forums.adobe.com/message/4013068#4013068
    http://forums.adobe.com/message/3519366#3519366
    http://forums.adobe.com/thread/485331?tstart=0

  • Save/open document with different font with RTFEditor!

    Hello everyone !
    I am creating a RTF Editor with JTextPane, DefaultStyledDocument and RTFEditor,It is right if input English character with different Font such as Arial,Basemic etc .but with Non-English ,It is question!!when I input chinese in font "����GB_2312",and save it ,then I open it again ,font is changed to "��"��but font size,color ,and style is correct!I doubt it is RTFEditor does't support chinese font ,is it?how can I do?
    thanks a lot!

    That's because nobody has posted an answer. You can find the discussion at how do I save a document with different page orientations to one pdf? I think this is pretty much what happens on Mac, but you can combine the separate PDFs to one.

  • Report Layout for different page sizes....

    hi...by chance my report (which was developed for an A4(letter size) paper) printed on a legal size page(8x13 inch) which left alot of blank space on the bottom of page which was giving a bad look to my report. So I want to know that is there anyway to develop the reports so that they set the reports width n height automatically with different page sizes?

    nobody is willing to answer this?

  • How do I create a PDF document with multiple different page sizes?

    I scan tif images and can have a single document with Letter, Legal, Tabloid, and even full map plan sizes (36" X 24") all in one document.  I get the document all set, then do a: File, Print, choose Adobe PDF (running Acrobat XI Pro), but it converts all the pages in my tif file to a single size.
    I've found where to set the size, but the problem is I have many different sizes.  Is there a way to have the Adobe PDF printer, just use the original documents page sizes for each page when converting?

    The program I use to create the TIF files (OpenText's eDOCS Imaging) does not make PDFs, it makes TIFs (and TIFFs).  To then convert this, if I try to do it through Adobe directly, I get an error which prompts me to open it in the native program and to choose print and then select the adobe printer.
    This works perfect if every page is the same size, but many times my documents have many different page sizes  as well as portrait and landscape within the same document (but that is a separate option).
    Doesn't Adobe have a "use the original page size / orientation" as an option when creating PDFs from existing documents?

Maybe you are looking for

  • Dynamic group for HSW object based on Site (Gateway) server

    Hi Using the SiteName parameter when deploying gateway servers like described in the blog post from Cameron Fuller http://blogs.catapultsystems.com/cfuller/archive/2015/02/12/creating-dynamic-groups-for-objects-which-exist-behind-a-gateway-in-opsmgr-

  • General task list with component : creating standard BOM

    Hello, When adding a component to a general task list , i get a "create standard BOM" screen , see below for example : Standard object PA00000212             Plant                                  BOM Usage       4                                    

  • Basic FCP Help for beginner

    Thanks in advance for looking at my post. I have a uni project whereby i have to make a music video for a song previously recorded. I have videoed various shots of my band playing along to the recorded song. They all start at different times (i.e sta

  • Problems importing songs

    Hello; I am having problems importing songs into Itunes. I have itunes version 11.0.1.12, but this the first time I have this problem, At first it woould only import certain songs (not all of them), later on I cannot import any songs into itunes, I a

  • Help with a label output. Probably something simple.

    Don't worry about the rest of the code, my problem is that the label will not update after the btOption1 button is clicked. Any suggestions? // Create the event     class ButtonListener implements ActionListener         public void actionPerformed(Ac