I'm generating a c# project and I want to add some footnotes to my PDF file. I want to create footnotes which present additional documents on it.
I tried these but none of these are working; nothing shows up on my PDF file.
Paragraph paragraph = document.LastSection.AddParagraph();
FootNote fn = paragraph.AddFootnote();
fn.AddParagraph("¹You should add document one.");
-------------------------------------
paragraph.AddFootnote("¹You should add document one.");
I didn't find what is wrong,
Thanks for help.
Footnotes do not work with the current implementation of MigraDoc.