Printing two pdf on one sheet without scaling
Clash Royale CLAN TAG#URR8PPP
up vote
7
down vote
favorite
I have a pdf document which covers half of an A4 page. Is there a way to duplicate the text/images of that document, such that I get a single page A4 document (pdf file) with twice the orginal content, one above each other? Since the original only covers half a page, no scaling should be necessary.
add a comment |Â
up vote
7
down vote
favorite
I have a pdf document which covers half of an A4 page. Is there a way to duplicate the text/images of that document, such that I get a single page A4 document (pdf file) with twice the orginal content, one above each other? Since the original only covers half a page, no scaling should be necessary.
add a comment |Â
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I have a pdf document which covers half of an A4 page. Is there a way to duplicate the text/images of that document, such that I get a single page A4 document (pdf file) with twice the orginal content, one above each other? Since the original only covers half a page, no scaling should be necessary.
I have a pdf document which covers half of an A4 page. Is there a way to duplicate the text/images of that document, such that I get a single page A4 document (pdf file) with twice the orginal content, one above each other? Since the original only covers half a page, no scaling should be necessary.
asked Sep 5 at 20:12
user1583209
1453
1453
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
7
down vote
accepted
You can use a combination of pdfjam and pdftk to do this:
pdfjam --offset '0mm -148.5mm' half-a4.pdf --outfile other-a4.pdf
pdftk half-a4.pdf stamp other-a4.pdf output double.pdf
pdfjam is being used to shift the page down half a page (A4 = 297mm tall, and 297÷2=148.5). If you need to shift the other way, you'd use -110mm 0mm
.
Then pdftk puts the two pages on top of each other.
That worked. Thanks.
â user1583209
Sep 5 at 21:04
add a comment |Â
up vote
4
down vote
You can try the command convert
as follows:
convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
Another solution:
pdfjam --outfile <output.pdf> --paper a4paper <input.pdf>
Main man page is here
Manual is here
Download here
Example commands are here
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the commandconvert
something likeconvert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
accepted
You can use a combination of pdfjam and pdftk to do this:
pdfjam --offset '0mm -148.5mm' half-a4.pdf --outfile other-a4.pdf
pdftk half-a4.pdf stamp other-a4.pdf output double.pdf
pdfjam is being used to shift the page down half a page (A4 = 297mm tall, and 297÷2=148.5). If you need to shift the other way, you'd use -110mm 0mm
.
Then pdftk puts the two pages on top of each other.
That worked. Thanks.
â user1583209
Sep 5 at 21:04
add a comment |Â
up vote
7
down vote
accepted
You can use a combination of pdfjam and pdftk to do this:
pdfjam --offset '0mm -148.5mm' half-a4.pdf --outfile other-a4.pdf
pdftk half-a4.pdf stamp other-a4.pdf output double.pdf
pdfjam is being used to shift the page down half a page (A4 = 297mm tall, and 297÷2=148.5). If you need to shift the other way, you'd use -110mm 0mm
.
Then pdftk puts the two pages on top of each other.
That worked. Thanks.
â user1583209
Sep 5 at 21:04
add a comment |Â
up vote
7
down vote
accepted
up vote
7
down vote
accepted
You can use a combination of pdfjam and pdftk to do this:
pdfjam --offset '0mm -148.5mm' half-a4.pdf --outfile other-a4.pdf
pdftk half-a4.pdf stamp other-a4.pdf output double.pdf
pdfjam is being used to shift the page down half a page (A4 = 297mm tall, and 297÷2=148.5). If you need to shift the other way, you'd use -110mm 0mm
.
Then pdftk puts the two pages on top of each other.
You can use a combination of pdfjam and pdftk to do this:
pdfjam --offset '0mm -148.5mm' half-a4.pdf --outfile other-a4.pdf
pdftk half-a4.pdf stamp other-a4.pdf output double.pdf
pdfjam is being used to shift the page down half a page (A4 = 297mm tall, and 297÷2=148.5). If you need to shift the other way, you'd use -110mm 0mm
.
Then pdftk puts the two pages on top of each other.
edited Sep 5 at 21:08
answered Sep 5 at 20:58
derobert
69.5k8151207
69.5k8151207
That worked. Thanks.
â user1583209
Sep 5 at 21:04
add a comment |Â
That worked. Thanks.
â user1583209
Sep 5 at 21:04
That worked. Thanks.
â user1583209
Sep 5 at 21:04
That worked. Thanks.
â user1583209
Sep 5 at 21:04
add a comment |Â
up vote
4
down vote
You can try the command convert
as follows:
convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
Another solution:
pdfjam --outfile <output.pdf> --paper a4paper <input.pdf>
Main man page is here
Manual is here
Download here
Example commands are here
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the commandconvert
something likeconvert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
add a comment |Â
up vote
4
down vote
You can try the command convert
as follows:
convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
Another solution:
pdfjam --outfile <output.pdf> --paper a4paper <input.pdf>
Main man page is here
Manual is here
Download here
Example commands are here
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the commandconvert
something likeconvert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
add a comment |Â
up vote
4
down vote
up vote
4
down vote
You can try the command convert
as follows:
convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
Another solution:
pdfjam --outfile <output.pdf> --paper a4paper <input.pdf>
Main man page is here
Manual is here
Download here
Example commands are here
You can try the command convert
as follows:
convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
Another solution:
pdfjam --outfile <output.pdf> --paper a4paper <input.pdf>
Main man page is here
Manual is here
Download here
Example commands are here
edited Sep 5 at 20:55
answered Sep 5 at 20:36
Goro
5,01552459
5,01552459
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the commandconvert
something likeconvert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
add a comment |Â
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the commandconvert
something likeconvert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
This did not do anything. The output.pdf file looks the same as the input.
â user1583209
Sep 5 at 20:42
Did you try the command
convert
something like convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Did you try the command
convert
something like convert -density 300 -define pdf:fit-page=A4 <in.pdf> <out.pdf>
â Goro
Sep 5 at 20:51
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
Yes, I tried both, and neither worked for me.
â user1583209
Sep 6 at 12:52
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f467124%2fprinting-two-pdf-on-one-sheet-without-scaling%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password