how can I duplicate A6 size book one below the other on A4 paper? I would like to receive two A6 format of the same brochures printed from ordinary A4 format file. Like this:
And so on.. What I was able to achieve below but it's printing only one copy and in incorrect order.
\documentclass[a4paper]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-, nup=2x2]{a4papersample}
\end{document}
Then I've tried this for 10 pages, it works, but what If I get 20,50 or more? Can I automate this for any count of pages in file? Some macro of lastpage?
\includepdf[pages={10,1,10,1}, nup=2x2]{a4papersample}
\includepdf[pages={2,9,2,9}, nup=2x2]{a4papersample}
\includepdf[pages={8,3,8,3}, nup=2x2]{a4papersample}
\includepdf[pages={4,7,4,7}, nup=2x2]{a4papersample}
\includepdf[pages={6,5,6,5}, nup=2x2]{a4papersample}

\includepdf) – daleif Dec 10 '20 at 15:20bookletpackage to produce the PDF of an A5 booklet (2 A5 pages per A4) and then rescale this PDF and combine two of them (4 A6 pages per A4)? Not a fully automatic solution, of course. – Ingmar Dec 10 '20 at 17:13