pdfblah.com

← All guides

Insert a page after every N pages

You built a 2026 planner, one spread per week, and want a notes page between every single week. Acrobat wants a subscription for that, and the online tools want you to insert it 52 times by hand. It is one command.

How to do it

pip install pdfblah

# a notes page after every week (2 pages per week)
pdfblah pages planner.pdf out.pdf --insert notes.pdf --every 2

# duplicate one of the document's own pages: page 3, repeated after every page
pdfblah pages form.pdf out.pdf --insert form.pdf --insert-page 3 --every 1

# a blank behind every sheet, for single-sided printing of a duplex layout
pdfblah pages doc.pdf out.pdf --insert blank.pdf
inserted 52 page(s), 156 total  ->  out.pdf

The details that behave

Tips