Is there a preferred program for combining a bunch of smaller PDF filesinto one big PDF?
You can install pdftk and do it from the commandline.Split large pdf into many one-page files: pdftk largepdfile.pdf burstMerge files into one PDF file: pdftk *.pdf cat output onelargepdfile.pdfThere are many more commands that will do more things. Try: pdftk --helpI think that ghostscript will also do the trick, but have never used it.There is also PDF Split and Merge which I have never used.www.brighthub.com/.../14795.aspxhttp://www.youtube.com/watch?v=eQoOk5Xbt3MI have used this a long time ago. I am not sure if it will still work:sourceforge.net/.../Good luck. Please report back. I have not done this in some time so aminterested in your results.
I have used pdfsam (pdf split and merge) and pdfmod.Both do the job well. I installed them in the software center.
try pdftk its command line and very simple :pdftk *.pdf cat new.pdfTake a look at :maketecheasier.com/.../22It gives more info.
I should have said :pdftk *.pdf cat output new.pdf