Jump to content

3 page cut and stack imposition


fheuvel

Recommended Posts

I have a 3 page document, each with its own numbering range.

After imposing I would like to have the 3 pages 3-up on a sheet (single sided) and numbered through the stack.

 

Whatever I try in FP Impose I am never able to get the 3 pages on 1 sheet. The imposition result is always all records of page 1 first then page 2 and page 3.

 

Is this imposition scheme possible in FP Imposer?

Link to comment
Share on other sites

On the "Layout" tab of FPImposer under "Step and Repeat", is the leftmost drop down menu set to "Stack"? The other thing to check would be to make sure the "Infinite Stack" checkbox is selected.

 

If that doesn't work, maybe you could upload you .fpi file for me to look at for you.

Link to comment
Share on other sites

The reason you aren't getting the results you anticipated is because FusionPro wants to collate each page in your PDF document per record. So you get 3 pages per record. Here's a 5 step work around that should give you the results you want:

 

1. FusionPro > Data Definition > Wizard > click "next" > select "None" and click "Next" > click "Finish"

 

2. FusionPro > Manage Pages > Page Usage > "Edit" each page, setting them to "unused" and name them 1, 2, and 3 respectively.

 

3. Create an "OnJobStart" callback rule with the following code:

FusionPro.Composition.composeAllRecords = false;
FusionPro.Composition.endRecordNumber = 300;

 

4. Create an empty text rule called "Number" with this code:

return FormatNumber("000",CurrentRecordNumber()+99);

 

5. Create an "OnRecordStart" callback rule that contains the following code:

var pg = Left(Rule("Number"),1);
FusionPro.Composition.SetBodyPageUsage(pg,true);

 

This solution bypasses your data file and allows you to use only one page per "record" by turning on and off each page. Hope that helps!

Link to comment
Share on other sites

Thanks again.

 

I understand now why it wouldn't work the way I thought.

 

Your solution works, but the OnJobStart part didn't work. It generated only 1 record.

When I define the record range at Compose time in the Input tab I get the result I want.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...