diff options
author | Karl Berry <karl@freefriends.org> | 2023-07-06 19:48:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-07-06 19:48:10 +0000 |
commit | 613530dad2ec5fee3334c307f9e4112489d14308 (patch) | |
tree | 3b96f2c6a364638fd841989387e0fe97d8685b14 /Build/source/texk | |
parent | e8a7f2a6d71d1898700cc8833f2e98547e80a174 (diff) |
pdfjam (6jul23)
git-svn-id: svn://tug.org/texlive/trunk@67566 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam b/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam index d470e52bc0e..bc4a8be7d75 100755 --- a/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam +++ b/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam @@ -1,5 +1,5 @@ #!/bin/sh -version=3.05 +version=3.06 ######################################################################### ## ## ## pdfjam: A shell-script interface to the "pdfpages" LaTeX package ## @@ -421,7 +421,7 @@ if command -v paper >/dev/null ; then if test "$paperunit" = "pt"; then paperunit=bp; fi paperwidth=$(echo "$paperdimensions" | cut -f 1 -d "x") paperheight=$(echo "$paperdimensions" | cut -f 2 -d "x") - papersize="papersize={$paperheight$paperunit,$paperwidth$paperunit}" + papersize="papersize={$paperwidth$paperunit,$paperheight$paperunit}" paper='' ## We might not have a LaTeX-compatible name else paper='a4paper' ## fallback paper size is ISO A4 |