Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use TeXShop as a PDF manipulation tool' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use TeXShop as a PDF manipulation tool
Authored by: pmccann on Aug 14, '03 08:56:22PM

Here's a way that works fine: make a document in TeXShop with the following contents, and simply process away. This will produce a new pdf containing all the pages from 1.pdf, pages 4 to 6 of 2.pdf and pages 4 to 5 and 10 to 14 of 3.pdf.

Cheers, Paul

\documentclass[letter]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=1-]{/Users/pmccann/Desktop/1.pdf}
\includepdf[pages=4-6]{/Users/pmccann/Desktop/2.pdf}
\includepdf[pages={4-5,10-14}]{/Users/pmccann/Desktop/3.pdf}
\end{document}


[ Reply to This | # ]
Use TeXShop as a PDF manipulation tool
Authored by: pmccann on Aug 14, '03 08:59:05PM

Sigh... will I ever learn? Preview bites again.

Please prefix each and every one of the lines in my previous message with a backslash.



[ Reply to This | # ]