Forrest logo
back to context overview

pdfjam

List of commands for pdfjam:

  • pdfjam:ai:ca2f4 print and staple range of pages pdf document
    $ pdfjam input.pdf 1-5 --twoside --landscape --outfile output.pdf && stapler output.pdf
    try on your machine
    explain this command
  • pdfjam:tldr:6493a pdfjam: Reverse the order of pages within each given file and concatenate them.
    $ pdfjam ${files---} ${last-1} --suffix ${reversed}
    try on your machine
    explain this command
  • pdfjam:tldr:6798a pdfjam: Merge the first page of each file together.
    $ pdfjam ${files---} 1 --outfile ${path-to-output_file-pdf}
    try on your machine
    explain this command
  • pdfjam:tldr:96137 pdfjam: Sign an A4 page (adjust delta to height for other formats) with a scanned signature by overlaying them.
    $ pdfjam ${filename-pdf} ${path-to-signature} --fitpaper true --outfile ${path-to-signed-pdf} --nup "${1x2}" --delta "${0 -842pt}"
    try on your machine
    explain this command
  • pdfjam:tldr:d076e pdfjam: Merge two (or more) PDFs.
    $ pdfjam ${filename1-pdf} ${filename2-pdf} --outfile ${path-to-output_file-pdf}
    try on your machine
    explain this command
  • pdfjam:tldr:d6e46 pdfjam: Arrange the pages from the input file into a fancy 2x2 grid.
    $ pdfjam ${filename-pdf} --nup ${2x2} --suffix ${4up} --preamble '${\usepackage{fancyhdr} \pagestyle{fancy}}'
    try on your machine
    explain this command
back to context overview