Sei sulla pagina 1di 1

Extract Pages From a PDF

For example, to extract pages 22-36 from a 100-page PDF file using pdftk:
$ pdftk A=100p-inputfile.pdf cat A22-36 output outfile_p22-p36.pdf
Split Select Pages from Multiple PDFs into a New Document:
$ pdftk A=one.pdf B=two.pdf cat A1-7 B1-5 A8 output combined.pdf
****************************************************************************
Unlock pdf
http://smallpdf.com/unlock-pdf
****************************************************************************
Including pages from PDF documents
Use the pdfpages package.
\usepackage{pdfpages}
\includepdf[pages={1}]{myfile.pdf}
You either need to specify the full path e.g.:
\includepdf[pages={1-7}]{/home/bob/Documents/MyFolder/Resources/myfile.pdf}
you need to specify the pages you wish to include,
i.e. \includepdf[pages={1,3,5}]{myfile.pdf}
would include pages 1, 3, and 5 of the file. To include the entire file, you spe
cify pages={-}, where {-} is a range without the endpoints specified which defau
lt to the first and last pages, respectively.
file name without spaces

***************************************************************************

Potrebbero piacerti anche