Setting bookmarks to identify input documents

To add a global bookmark pointing to the first page of each included file use the bookmark command:

bookmark ${file.$name}   # Use ${file.$name} to set bookmark to input file name.

output “c:\output.pdf”

  input “c:\cover.pdf”    # bookmark text is "cover.pdf"

  input “c:\body.pdf”     # bookmark text is "body.pdf"

 

To specify a bookmark pointing to one particular input document use the bookmark parameter of the input command:

output “c:\output.pdf”

  input “c:\cover.pdf”, bookmark=”Cover page section”

  input “c:\body.pdf”, bookmark=”Body section”