Dear Sir or Madam,
I use this code to insert the footnotes:
for (int i = 0; i < 3; i++)
{
var footnote = new Footnote(mOutputDocument, FootnoteType.Footnote);
footnote.Paragraphs.Add(new AW.Paragraph(mOutputDocument));
footnote.FirstParagraph.Runs.Add(new Run(mOutputDocument, $"Footnote {i}" ));
footnote.Font.Superscript = true;
para.AppendChild(footnote);
}
The references numbers are missed in the footnotes (see attached documents). What property should I set to have references numbers
Alex test-Non-current assets - property, plant and equipment-Alex test-Equity-Suffix.docx (16.4 KB)
in the footnotes?