'pdfjam: Merging multiple pdfs into one page without white space

which I want to get AB closer without space:

------       ------            ----------     ------------
|     |      |      |          |  ————  |    | ——    ——  |
|  A  |      |  B   |          |  |A|B| |    | |A|   |B| |
|     |      |      |          |  ————  |    |  ——   ——  |
|     |      |      |  --->    |        |NOT |           |
|     |      |      |          |        |    |           |
|     |      |      |          |        |    |           |
|     |      |      |          |        |    |           |
------       ------            ------      --------

which I use:

pdfjam figurea.pdf figureb.pdf --nup 2x1 --landscape --outfile figureout.pdf


Solution 1:[1]

Try specifying a negative value for delta:

pdfjam figurea.pdf figureb.pdf --delta '-10 0' --nup 2x1 --landscape --outfile figureout.pdf

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Yang