Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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
like image 931
grug Avatar asked Oct 24 '25 03:10

grug


1 Answers

Try specifying a negative value for delta:

pdfjam figurea.pdf figureb.pdf --delta '-10 0' --nup 2x1 --landscape --outfile figureout.pdf
like image 96
Yang Avatar answered Oct 26 '25 20:10

Yang