I use following .tex file very much for printing books, booklets, etc
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages={4-8},nup=1x2,frame,landscape]{xyz.pdf}
\end{document}
I wanted ideas on making a front-end for this repeatedly used file. Like having file add options, parameter setup (for pdfpages, ex : pages={3-45}, or nup=3x1 or frame=true or signature=8, etc) etc; and then have a button to execute the commands at the back-end and get the PDF preview as the final step
My questions:
- Is it possible to make something like this?
- If it is possible to do it, how -- as in, are there predefined ways?
- Are there tools already doing something like this?