NAME

PDF::Imposition::Schema1x8x2 - fixed 16 pages signatures on a single sheet, with triple folding.

SYNOPSIS

use PDF::Imposition::Schema1x8x2;
my $imposer = PDF::Imposition::Schema1x8x2->new(
                                                file => "test.pdf",
                                                output => "out.pdf",
                                                );
$imposer->impose;

The output pdf will be left in $imposer->output

SCHEMA EXPLANATION

Fixed signature size of 16 pages, printed recto-verso on a single sheet.

Typical usage: print A5 on A3, or A6 on A4, then fold trice, first along the y axys, then the x axys and finally the y axys again. You need to trim the top and right margins before binding.

Not suitable for home-printing because the spine is unstable unless done by a machine.

Visualization (the prefix r means logical page disposed upside-down -- rotated 180 degrees):

+------+------+------+------+
|      |      |      |      |
|  r5  |  r12 |  r9  | r8   |
|      |      |      |      |
+------+------+------+------+
|      |      |      |      |
|  4   |  13  |  16  |   1  |
|      |      |      |      |
+------+------+------+------+

+------+------+------+------+
|      |      |      |      |
| r3   | r14  |  r15 | r2   |
|      |      |      |      |
+------+------+------+------+
|      |      |      |      |
|  6   |  11  |  10  |   7  |
|      |      |      |      |
+------+------+------+------+

To complete the block of 16 logical pages, blank pages are inserted if needed.

SEE ALSO

PDF::Imposition