Hi David, <snip/>
> # re-collate into book signature > pdfjam $1-out-2up.pdf --signature $2 --paper a3 --landscape --outfile > $1-sig.pdf <snip/> > It *appears* to work perfectly. The final output looks fine on my PDF viewer > (Sumatra). When printed out, however, the scores themselves are undersize. > They should be sized for A5 with four on one side of each A3 sheet and four > on the other. This is what I get, but they appear to be sized for A6 paper. > I want to emphasize that the only thing wrong is the printed size of the > scores themselves. > > Does anyone know how to fix this? try with `--paper a3paper` instead of `--paper a3`. Unfortunately, pdfjam is not helpful enough to provide an error message, but papersizes are always given as `*paper`. If the size isn't known, then pdfjam silently takes the LaTeX default (which is likely to be either A4 or letter format), and scales appropriately - unless you use `--noautoscale true`. So it's indistinguishable unless you actually look at the PDF pages' dimensions, or print without scaling. Cheers, Alex