I'm using the version 3.3.5 of docx4j and 3.3.4 of docx4j-export-fo to generade the document. I'm trying to add page numbering, it's work properly in docx format but in pdf doesn't
That's the code that I use to generate the footer
private void addPageNumber(WordprocessingMLPackage wordMLPackage)
throws Exception {
// Delete the Styles part, since it clutters up our output
MainDocumentPart mdp = wordMLPackage.getMainDocumentPart();
Relationship styleRel = mdp.getStyleDefinitionsPart()
.getSourceRelationships().get(0);
mdp.getRelationshipsPart().removeRelationship(styleRel);
// OK, the guts of ...