The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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 A6 on A3, 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  |
     |      |      |      |      |
     +------+------+------+------+

     +------+------+------+------+
     |      |      |      |      |
     | r7   | r10  |  r11 | r6   |
     |      |      |      |      |
     +------+------+------+------+
     |      |      |      |      |
     |  2   |  15  |  14  |   3  |
     |      |      |      |      |
     +------+------+------+------+

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

INTERNALS

pages_per_sheet

Returns 16

cropmarks_options

Set inner to false and force signature to 16.

SEE ALSO

PDF::Imposition