After I have succesfully created my $docx from a base template..
$docx = new CreateDocxFromTemplate($this->path);
and render it later..
$docx->createDocx('docs/example.docx');
I get a Word file that includes both the styles I defined in my base template, but it also holds PHPDocX's own styles (including Title PHPDOCX). How do I prevent these PHPDocX styles to be included in the resulting file? - we are using the Premium version.