If I have got 3 docx files with each other marging top values.
doc1: marging-top = 4 cm
doc2: marging-top = 10 cm
doc3: marging-top = 16 cm
with the addDOCX function i combine these three
$docx = new CreateDocx();
$docx->addDOCX('doc1.docx');
$docx->addDOCX('doc2.docx');
$docx->addDOCX('doc3.docx');
$docx->createDocx('batch');
The batch.docx file has indead 3 pages but all the pages will start at the top of the page. (the original margins are lost)