Is there a way, in Linux, Windows, or preferably Mac OS X to take a bunch of PDF files and \"chain them\" into one \"booklet\" without owning Acrobat and preferably without
I had to recently research this and came up with the following. In the end I went with ImageMagick.
I've mentioned it in the other topics and I'll mention it again: you can use the Ghostscript utilities pdf2ps
and ps2pdf
do it as so:
pdf2ps file1.pdf file1.ps # Convert file1 to PostScript
pdf2ps file2.pdf file2.ps # Convert file2 to PostScript
cat file2.ps >> file1.ps # Concatenate files
ps2pdf file1.ps output.pdf # Convert back to PDF