Hi,
I am using Aspose latest version for document conversion . I am trying to create footnote using below method. After opening the saved document, I can able to see the footnote but not with styles eg : footnote No., superscript styles etc …
Do i need to add something else to get footnote styles ?Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write(“Some text is added.”);Footnote footnote = new Footnote(doc, FootnoteType.FOOTNOTE);
builder.getCurrentParagraph().appendChild(footnote);
footnote.getParagraphs().add(new Paragraph(doc));
footnote.getFirstParagraph().getRuns().add(new Run(doc, “Footnote text.”));
Thanks,
Anbu