How can I cut the margin of a PDF or djvu file for optimal booklet printing?

I have a file which has exaggerated margins. This forces me to print it as a booklet, otherwise I feel I'm waisting paper (a good size of the font allows me to do so). But if I print directly in booklet format I still get those large margins.

How can I get rid of them? can I create a new file in which those margins do not appear and print it optimally as a booklet?


Solution 1:

My favorite tool to crop PDF files is BRISS java program available here: http://sourceforge.net/projects/briss/

Solution 2:

Try pdfcrop, available on the package texlive-extra-utils.

pdfcrop --margins 0 file.pdf

This will take the original PDF and crop completely the margins of it, assuming it is generated will real margins. If you want some margins, you can change the 0 for another number like 5 or 10.