HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML v3 Archived Forums (Read Only) › General questions / FAQ › pd4ml:footnote with noref › Re: Re: pd4ml:footnote with noref
December 12, 2016 at 13:10
#29969
Thanks for the reply.
I updated the version and it still didn’t work. After some research I found out that if I add bodystyle like this, footnote is not displayed.
String bodyStyleTemplate = "body{ margin-left : %smm;margin-right : %smm;padding : 0px;margin-top:0mm;margin-bottom:0mm;}";<br />
String bodyStyle = String.format(bodyStyleTemplate, left, right);<br />
pd4ml.addStyle(bodyStyle, true);
I managed to workarount that and the footnote is now displayed. Thanks for brining me on the right path.