Divide a A3 document in two A4 documents

6,981

Surprisingly simple:

sudo apt install pdfposter
pdfposter -s1 a3-input.pdf a4-output.pdf

pdfposter defaults to output to A4 by default (see man pdfposter for other options). All we have to do is tell it not to scale (with -s1) and it'll figure things out for itself.

Note that you'll need a printer that can print right up to the edges.

Share:
6,981

Related videos on Youtube

user1260928
Author by

user1260928

Updated on September 18, 2022

Comments

  • user1260928
    user1260928 almost 2 years

    I have a house plan in A3 format.
    In this plan I have the ground floor and the floor.
    I need to print this A3 in two A4 documents (one with the ground floor and on with the floor).
    So, i need to cut this A3 in two A4 without breaking the scale of the plans.
    I don't know if I am being clear...

    So I d like to know if there is a linux software that could easily achieve that.

    If anyone knows... Thanks

  • user1260928
    user1260928 over 8 years
    it's telling me : pdfposter: error: The input-file is either currupt or no PDF at all.
  • Oli
    Oli over 8 years
    Is the input file a PDF? If not, convert it to one. How you do that really depends on the type of document but most editors have a print to PDF function directly (or via the pdf printer).
  • user1260928
    user1260928 over 8 years
    I found a tool to repair the pdf, it worked. Thx for your help
  • Tarass
    Tarass over 7 years
    I have an extra white page at the beginning of the splitted pdf. Any idea ?
  • Tweepy
    Tweepy over 4 years
    This command line assume the input is A3. For a generic input size generating multiple A4, here is the command : pdfposter any-input.pdf -p A3 a4-output.pdf
  • Tweepy
    Tweepy over 4 years
    Also works with: pdfposter any-input.pdf a4-output.pdf -mA4 -pA3