Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Generate PocketMod layouts via the Print dialog' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Generate PocketMod layouts via the Print dialog
Authored by: gumse on Aug 21, '07 07:09:04AM

And for those of us that have full duplex printers:

cat "$1" > /tmp/temp$$.pdf && java -classpath /Applications/Utilities/Multivalent20060102.jar tool.pdf.Impose -dim 2x2 -paper A4 -layout "8,1,5u,4u,2,7,3u,6u" -verbose /tmp/temp$$.pdf 2> /tmp/temp$$.err && open /tmp/temp$$-up.pdf



[ Reply to This | # ]
10.4: Generate PocketMod layouts via the Print dialog
Authored by: gumse on Aug 21, '07 11:30:19AM

16 page layout on duplex printer:

cat "$1" > /tmp/temp$$.pdf && java -classpath /Applications/Utilities/Multivalent20060102.jar tool.pdf.Impose -dim 2x4 -paper A4 -layout "1l,8r,16l,9r,13l,12r,4l,5r,7l,2r,10l,15r,11l,14r,6l,3r" -sep 1 -verbose /tmp/temp$$.pdf 2> /tmp/temp$$.err && open /tmp/temp$$-up.pdf



[ Reply to This | # ]