The mission is to print a folder on A4 paper, and fold it into a book.
- Calculate: (number of pages \ 4) + 1 = Sheets (This is needed as the -s parameter in the psbook-command. If the original document has 9 pages then we need to use the following calculation: (9 \ 4)+1 = 2 + 1 = 3) 2 sheets will hold 8 pages which is one page less than the document. 3 sheets will hold 12 pages and is more than the document.
- Convert the original file to a .ps-file: pdftops original.pdf new_original.ps
- Create the pages in the book: psbook -s3 new_original.ps new_original_book.ps (Refer to step 1 for info about -s3 parameter)
- Reorder the pages using psnup: psnup -l -n2 new_original_book.ps new_original_folder.ps (Parameter -l is to print in landscape, and -n2 is to place 2 pages on each page.)
- Convert back to pdf-format: ps2pdf new_original_folder.ps folder.pdf
- Remove temporary files: rm new_original_*
After we have printed the book; the pages should come sequentially as in all books. Fold, staple and deliever you brochure/folder. If the original document is more than 4-5 pages we might want to cut a little in front of the book after we have folded it.
No comments:
Post a Comment