Hi,
I have a document that contains a marginal table and a footnote. The docx is in correct format, but when i save it to pdf the format changes completely. Even if i explicitly declares that i want the footnote to be at the end of the document.
@Test
public void documentWithMarginalTableAndFootnoteProblem() throws Exception {
Document doc = new Document("src/test/resources/asposeProblems/DocumentWithAngularTableAndFootnote.docx");
doc.getFootnoteOptions().setPosition(FootnotePosition.BOTTOM_OF_PAGE);
doc.save("src/test/resources/asposeProblems/DocumentWithAngularTableAndFootnote.pdf", SaveFormat.PDF);
}
I attached both the docx and the resulted pdf.
DocumentwithAngularTableAndFootnote.docx (29.4 KB)
DocumentWithAngularTableAndFootnote.pdf (48.0 KB)