If you could find an intuitive way to do dutch cut imposition that would be pretty huge.
I just looked up "Dutch cut" online, and I'm not sure if I understood correctly.
In PnPInk, if you do:
.L{2x3}
you get:
1 2
3 4
5 6
If you do: .L{-2x3}
2 1
4 3
6 5
(reverse the column order)
If you do: .L{2x-3}
5 6
3 4
1 2
(reverse the file order)
If you do .L{-2x-3}
6 5
4 3
2 1
In PnPInk, "^" is a rotation symbol.
If I use Page{letter}, it will use a vertical letter size, but if I use Page{letter^}, it will be landscape.
If I use:
L{2x3^}, it will change the order of the page layout (rows first, then columns)
1 4
2 5
3 6
(I think this is the configuration you're referring to).
If I use L{?x?^}, it will calculate the number of rows and columns that will fit inside the paper+margins depending on the size of the template, and impose like above.
And I can also make various combinations like L{-3x?^)
And many more (gaps between templates, automatic gaps, hextiles, hexgrids, offsets between rows and columns),
I'm sure it's easy to see what would happen if I use
Layout{3x3 shape=creditcard^}
I don't know if what I've said makes it clear how it works.