Also, one other subtle point. If I want to create say 2 new pdf documents from a master pdf like:
master.pdf : 4 pages
master1.pdf : pages 1-2
master2.pdf: pages 3-4
Do I need to first ‘split’ master.pdf into 4 individual pages and then merge each set of 2 into another or is there some shortcut method like:
createnewpdf(‘master.pdf’,1,2) ?
createnewpdf(‘master.pdf’,3,4)