Is it possible to print every page of the document to a separate pdf file, with a specific name.
\documentclass[12pt,a4paper]{article}
\begin{document}
page 1
\clearpage
page 2
\clearpage
page 3
\clearpage
\end{document}
Is it possible to print every page of the document to a separate pdf file, with a specific name.
\documentclass[12pt,a4paper]{article}
\begin{document}
page 1
\clearpage
page 2
\clearpage
page 3
\clearpage
\end{document}
To elaborate on the comment by David Carlisle, to split the final pdf page by page, one command line tool which achieves this would be
pdftk mydocument.pdf burst
or also
pdfseparate inputfile.pdf inputfile-%d.pdf
where the second command demonstrates how to get some more control over the output file names.