To append two PDF file into one output file:
output “c:\output.pdf”
input “c:\cover.pdf”
input “c:\body.pdf”
To combine multiple PDF files into one output file use wild cards in the name:
output “c:\output.pdf”
input “c:\inp*.pdf”
To add TIFF or other image files specify image file name:
output “c:\output.pdf”
input “c:\image1.tif”
input “c:\image2.bmp”
input “c:\image3.jpg”
input “c:\MyImages\img*.tif”
To create multiple output file in a single script use multiple output commands:
output “c:\output.pdf”
input “c:\cover.pdf”
input “c:\body.pdf”
output “c:\output_2.pdf”
input “c:\cover.pdf”
input “c:\body_2.pdf”