Printing two pdf on one sheet without scaling

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
7
down vote

favorite
1












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.










share|improve this question

























    up vote
    7
    down vote

    favorite
    1












    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.










    share|improve this question























      up vote
      7
      down vote

      favorite
      1









      up vote
      7
      down vote

      favorite
      1






      1





      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.










      share|improve this question













      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.







      pdf






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 5 at 20:12









      user1583209

      1453




      1453




















          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.



          half A4 (original)+other half A4 (generated)=double (generated)






          share|improve this answer






















          • That worked. Thanks.
            – user1583209
            Sep 5 at 21:04

















          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






          share|improve this answer






















          • 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










          • Yes, I tried both, and neither worked for me.
            – user1583209
            Sep 6 at 12:52










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          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






























          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.



          half A4 (original)+other half A4 (generated)=double (generated)






          share|improve this answer






















          • That worked. Thanks.
            – user1583209
            Sep 5 at 21:04














          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.



          half A4 (original)+other half A4 (generated)=double (generated)






          share|improve this answer






















          • That worked. Thanks.
            – user1583209
            Sep 5 at 21:04












          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.



          half A4 (original)+other half A4 (generated)=double (generated)






          share|improve this answer














          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.



          half A4 (original)+other half A4 (generated)=double (generated)







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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
















          • 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












          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






          share|improve this answer






















          • 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










          • Yes, I tried both, and neither worked for me.
            – user1583209
            Sep 6 at 12:52














          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






          share|improve this answer






















          • 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










          • Yes, I tried both, and neither worked for me.
            – user1583209
            Sep 6 at 12:52












          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






          share|improve this answer














          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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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 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
















          • 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










          • 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

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          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













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay