> Does anyone know of a freeware program that runs on windows or linux that > will split pdf files. For example if I want a pdf file of pages 2-3 of a 10 > page pdf? >
I don't know of a pdf spiltting program, bould you could test a combination of first converting to ps, then splitting and afterwards reconbverting to pdf. This shouldn't hurt the quality, because pdf is (more or less) "just" a compressed version of ps... You could try something like ~/> pdf2ps original.pdf - | psselect -p2-3 | ps2pdf13 - ausgabe.pdf under Linux.