Differences
This shows you the differences between two versions of the page.
docs:pdf:merge_pdf_files [2007/05/14 10:28] – created billh | docs:pdf:merge_pdf_files [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Merge PDF Files ====== | ||
+ | ===== pdftk ===== | ||
+ | < | ||
+ | Join in1.pdf and in2.pdf into a new PDF, out1.pdf | ||
+ | pdftk in1.pdf in2.pdf cat output out1.pdf | ||
+ | or (using handles): | ||
+ | pdftk A=in1.pdf B=in2.pdf cat A B output out1.pdf | ||
+ | or (using wildcards): | ||
+ | pdftk *.pdf cat output combined.pdf | ||
+ | </ | ||
+ | ===== Adobe Acrobat 6 ===== | ||
+ | * File -> Create PDF -> From Multiple Files... | ||
+ | * in Acrobat 6, there is a problem with the default order of merging documents and it almost always requires user intervention to put the pages in proper order before completing the merge |