Whoa.. whoa.. let's back track so that I can confirm a few things. 1. I am doing the binding myself, so I use variable length signatures for two reasons. Plus there is a third reason due to a flaw in InDesign. (a) So that images that spread across the centre line are printed on one sheet (where possible); (b) so that there are a minimum number of blank pages at the end of the book; and (c) to overcome the "text on a path problem". You cannot export "text on a path" on pages greater than ~70. A large InDesign file has to be broken up (see http://forums.adobe.com/thread/482470?tstart=0). 2. The example of 24, 28, 24 is actually taken from a book of mine that is right in front of me, and which I am reprinting. Each of these signatures has a large image that spreads over both pages of the central sheet, so the image is "whole". It's just the way I wanted to do it; and in fact, to some extent the book itself was designed around being able to print "unbroken" large images. 3. Another example from my books is: 32, 28, 28, 32; and yet another: (25 x 32) + 16. 4. I made a mistake in the description: the imposition is actually a series of 2-Up Saddle Stitched signatures, not Perfect Bound (which for 2-Up is simply a series of same-size saddle-stitched signatures anyway). 5. Thinking about it, I'm pretty sure all I need is a number generator that dumps numbers separated by commas into a place where I can access them -- Text Edit, InDesign, or the clipboard. IMPOSING I envisage these are the steps when I am ready to impose (nothing fancy, only 2-Up saddle stitch): 1. Work out the imposition layout. This must be completely flexible for my needs. The only limitation is that imposed by physics itself and the format of books: 2-sided paper, folded in half has four sides. So the signature-length must be divisible by four. Within that limitation, any possible combination is allowed. I may want a book like this: 4, 36, 24, 12, 32, 8, 4, 4,16, 28. 2. I open up the InDesign document ready to impose. 3. I open up the number generator script so that I can edit it. No interface is required -- signature lengths are overwritten in the script itself. The script will appear as (my entries overwriting the "0"s are in brackets): START = 0 [7] SIG(1) = 0 [12] SIG(2) = 0 [24] . . SIG(30) = 0 Page number error routine. Number generator routine. Output routine, inserting commas between numbers. Stops when a signature length of zero is encountered. Sent to either clipboard, Text Edit or InDesign. 4. I then paste the number sequence into the Page Range field, and also paste them into an unused page in the book, so that I can use them in future without recourse to the script. For an 8-page booklet (2-Up saddle-stitch), the numbers would be: 8,1,2,7,6,3,4,5. 5. When I press Export, a single-page PDF is created with the pages in 2-Up saddle-stitch order. But this PDF is not yet ready for printing. 6. The final step is to import the PDF (already in imposed sequence) into InDesign using the PlaceMultipagePDF script. When facing pages is turned on, I have a 2-Up, imposed book with variable length signatures, ready to print.
... View more