Use the new functionality "multiple page size" in an indesign book

I've creating an indesign book, in wich one chapter has a different (bigger /A3) page size. Indesign creates the book in pdf using the bigger page size, and do not use the real page size of every chapters. Why?
Thanks for help !

You might get better results in the ID forum just a few doors down.
InDesign

Similar Messages

  • "The document contains multiple page sizes"

    I am using ID 2014.1 on Windows 7.
    I have a 60-page document, and whenever I want to print a page on my desktop printer, I get this message:
    I have not changed the size of any of the pages, and I can't see anything unusual when I go through the whole document.
    There's no warning when I export to PDF.
    Here's my document setup:
    I have reset my preferences, to no avail.
    Exporting the file to idml didn't help either.
    I tried to print from some other files, and the same thing happened on one file, others were ok.
    Any ideas?

    I don't have CC 2014 installed on this machine, but you should quit the CC Desktop app using the gear icon, then restart it so it updates and check again, just to be sure.

  • New preview function for iPad–error message "Multiple page sizes not supported"

    When I try to use the new preview function with my iPad I get the error message "Multiple page sizes within a layout are not supported". I have a page that is 768 x  1296. I would really like to preview this folio before publishing. Any suggestions?

    If you're trying to create an article that scrolls vertically, you can create a 768x1296 article in a 1024x768 folio, but you need to select a Smooth Scrolling option when you create or import the article, or in the Article Properties dialog box.

  • 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.

  • In the new version of Pages, how do I print with comments and tracked changes?

    I am using the new version of Pages, and am trying to print (either in hard copy or to a PDF) a document to which I have added comments and made tracked changes. I would like the printed (or PDF) version of the document to show the comments and tracked changes. Does anyone know whether this is possible, and, if so, how to do this?

    Try the File > Export to command. One of the formats is txt (plain text) so it might not be what you're looking for.

  • I try to 'Print booklet' and receive an eror that "the active document uses multiple page sizes..."

    I try to 'Print booklet' and receive an eror that "the active document uses multiple page sizes..." but all the pages on my document are in the same size (as far as I know)
    How can I deal with this eror?

    This seems to be a bug, and so far the only workaround I know is  to copy/paste everything into a new file.

  • Print Booklet won't let me because of multiple page sizes, even if I am using A4 for all the pages

    Booklet won't let me because of multiple page sizes, even if I am using A4 for all the pages, this is the error message:
    "The active document uses multiple page sizes Print Booklet works only with documents that use a consistent page size."
    I am using Indesign CS6 (patches are up to date)
    thank you
    Cecilia

    Do you already see this when starting the Print Booklet dialog or later when finally putting out? If you can see the dialog windows, will the preview show all pages in same size?

  • [svn] 4634: First part of glue code for allowing Halo components to use the new Text Layout Framework , in order to get functionality such as bidirectional text.

    Revision: 4634
    Author:   [email protected]
    Date:     2009-01-22 17:38:56 -0800 (Thu, 22 Jan 2009)
    Log Message:
    First part of glue code for allowing Halo components to use the new Text Layout Framework, in order to get functionality such as bidirectional text.
    Background:
    TLF is making this possible by implementing a TLFTextField class. It is a Sprite that uses TLF to implement the same properties and methods as the legacy TextField class in the Player. Thanks to the createInFontContext() bottleneck method in UIComponent, it can be used by a properly-written Halo component (such as those in Flex 3) without any modifications to the component.
    Note: Text should render similarly -- but is unlikely to render identically -- when a component uses TLFTextField vs. TextField. The width and height may be different, affecting layout; text could wrap differently; etc. This is a fact-of-life based on the fact that TLF/FTE and TextField are completely different text engines.
    Whether a Halo component uses TLF or not to render text will be determined in Flex 4 by a new style, textFieldClass. (Gumbo components always use TLF.)
    TLFTextField is currently only partially implemented. It does not yet support scrolling, selection, editing, multiple formats, or htmlText. Therefore it can only be used for simple display text, such as a Button label.
    Details:
    The TextStyles.as bucket 'o text styles now includes a non-inheriting textFieldClass style. It can be set to either mx.core.UITextField or mx.core.UITLFTextField. These are the Flex framework's wrapper classes around the lower-level classes flash.text.TextField (in the Player) and its TLF-based workalike, flashx.textLayout.controls.TLFTextField.
    The global selector in defaults.css currently sets it to mx.core.UITextField using a ClassReference directive. For the time being, all Halo components will continue to use the "real" TextField.
    The new UITLFTextField is a copy of UITextField, except that it extends TLFTextField instead of TextField. This class has been added to FrameworkClasses.as because no classes in framework.swc have a dependency on it. It will get soft-linked into applcations via the textFieldClass style.
    The TLFTextField class currently lives in a fourth TLF SWC, textLayout_textField.swc. This SWC has been added to various build scripts. The external-library-path for building framework.swc now includes all four TLF SWCs, because UITLFTextField can't be compiled and linked without them. However, since they are external they aren't linked into framework.swc.
    Properly-written Halo UIComponents access their text fields only through the IUITextField interface, and they create text fields like this:
    textField = IUITextField(createInFontContext(UITextField));
    (The reason for using createInFontContext() is to support embedded fonts that are embedded in a different SWF.)
    The createInFontContext() method of UIComponent has been modified to use the textFieldClass style to determine whether to create a UITextField or a UITLFTextField.
    With these changes, you can now write code like
    to get two Buttons, the first of which uses UITextField (because this is the value of textFieldClass in the global selector) and the second of which uses UITLFTextField. They look very similar, which is good!
    Currently, both Buttons are being measured by using an offscreen TextField. A subsequent checkin will make components rendering using UITLFTextField measure themselves using an offscreen TLFTextField so that measurement and rendering are consistent.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/metadata/TextStyles.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITLFTextField.as

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • Can you have multiple bleed allowances (along with the multiple page sizes) in InDesign CS5?

    Hi there,
    I'm new to InDesign and have a question about documents with mixed page sizes in CS5.  I'm preparing an illustrated book for print and was hoping to be able to contain all the pages (including the covers) in one document.  My basic setup is 140 mm x 210 mm with a 3 mm bleed on each side.  I've managed to add the different cover page (146 mm x 216 mm) and spine (10 mm) dimensions easily enough, but can you have multiple bleed specifications too?  The bleed allowance I need for the case layout is 15 mm.  I've scoured InDesign and the net, but can't find any information about this anywhere.  It would seem rather silly to be able to have multiple page sizes in your document without being able to change the bleed allowance too.  Here's hoping it's possible!  Any help with this would be greatly appreciated. 
    Thank you!
    Alexandria

    make sure what your printer means ie: Page size + 6mm spine bulk + 15mm bleed.
    and design acordingly
    G..

  • How can I perform the LINEST function using the new version of Numbers? The old method of using "command enter" to complete the array function does not work. Please help ASAP!!!

    LINEST function using Numbers for Mac

    Thank you for your help. This page is somewhat helpful, but I still don't quite understand.  I am using the Numbers program, and my assignment calls for me to use the LINEST function to return a set of 10 values. 
    When I googled how to do this, a lot of pages mentioned hitting "command+enter" to complete the array function, but they were using an older version of Numbers and it doesn't do anything when I try it in the new version.  I tried using "Index" with LINEST, and i've managed to get about 5 values out of it.

  • When I use the new Pages on my iPad, I can't open it on my new computer. It tells me that I must download the new Pages to see the Pages document, but when I try to download the new pages to my computer it tells me all apps are up to date.

    When I use the new Pages app. On my IPod  to type documents, I can't open them on my new computer. It sends me a message that I have to download a newer version of pages to see the Pages document. When I try to do that it tells me all my apps are up to date and will not allow me to upgrade the pages on my iMac.
    Any suggestions?

    What level of OS X is installed on your Mac (your profile is incomplete)?
    Barry

  • I sent in my iPhone 6 for repair. I used restore on the loaner phone I was given, and the contacts, texts, reminders, and Safari pages all showed up. My phone is back, and when I used the restore function again, those items are missing.

    I sent in my iPhone 6 for repair. I used restore on the loaner phone I was given, and the contacts, texts, reminders, and Safari pages all showed up. My phone is back, and when I used the restore function again, those items are missing. I do not use iCloud because I have no wifi at home, limited data available for regularly backing up, and I have a 64GB phone and don't wish to pay to upgrade from the 5GB iCloud storage. Am I doing something wrong? It worked so seamlessly on my loaner phone that I am completely stumped as to why it will not restore those items to my original phone again.

    The iphone is designed to be synced to your computer or cloud service.  Your contacts should be in whatever program/service you have chosen to sync.
    If you have failed to do this, then they are likely gone.

  • How do I put a hyperlink in a document using the New Pages ... ?

    Using the "new" Pages;
    how do I put a hyperlink in a document ... ?
    I didn't have any problems with this using the Pages 4.2 or whatever ...

    There is a help menu
    http://help.apple.com/pages/mac/5.2/#/tand51db403

  • I found a track yesterday using the new siri-shazam function. Now, how do I see tracks I've found ?

    I've used the new siri-shazam function to look for a track yesterday. Now how do I find it ?

    You need the Kernel source and the ALSA source packages installed for ubuntu for the build to work right.
    It looks like the installer is having an issue trying to extract the package. You need to make sure you are root and when you switch to root, type "su - " without the quotes so that you get the environment of the root user as well which will have the correct paths for the /sbin and etc.
    After you extract everything and the setup completes, dont' worry because it won't work.
    Please god send us another Audio card from another company that cares.

  • Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?

    Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?

    You can upgrade to iPhoto '09 with a purchaed iLife '09 DVD - or yu can upgrade your OS and purchase an iLife '11 DVD
    Eitehr shuld be aviailable from amazon, eBay an dother places
    LN

Maybe you are looking for

  • How to do parameter binding in web dynpro

    My Web Service expects an input  object called "Token " which consistes of Token id, Provider - both strings Web service is checkUser I did mapping and all those things . In my UI(automatically created), i'll take the input from user for Token id and

  • Erase a document or email from ipad search

    I have an email that I sent to my tax accountant.  I want to delete it from my Ipad Search history.  I have deleted it from my email but when I search the ipad it still comes up.  How do I delete this so that it cannot be searched on my ipad? 

  • Using 48KHz & 32KHz in the same FCP sequence. Some say yes, some say no?

    Can anyone please, please help resolve the conflicting info I'm getting regarding using 48KHz & 32KHz material in one sequence. Forum user and generally smart-cookie Studio X says: You need convert the 32/12 audio to 48/16; otherwise it will drift ou

  • Cash Flow Report S_ALR_87012271

    Dear SAP Gurus, I am trying to get cash flow reports thru S_ALR_87012271. For this, i have copied the form 0SAPRATIO-04 and created a Zform in tcode FSI6. But i not able to fetch data in the above report. Pls help and advise the future course of acti

  • System-wide MTU 1400 setting?

    How do I setup the interfaces to use MTU of 1400? I have been able to add "mtu 1400" to /etc/hostname.XXX and got those NICs to set mtu to 1400. However when I bring up the zones, the virtual NICs that get created in the process, sets the MTU to 1500