DITA to PDF Using HTML5 and CSS: Footnotes

Post here questions and problems related to editing and publishing DITA content.
patjporter
Posts: 53
Joined: Sat May 22, 2021 6:04 pm

DITA to PDF Using HTML5 and CSS: Footnotes

Post by patjporter »

Hello,

I am getting these (on page. ) in my table since the table spans two pages:
Screen Shot 2021-10-10 at 12.11.19 PM.png
Screen Shot 2021-10-10 at 12.11.19 PM.png (147.78 KiB) Viewed 1133 times

How would I get rid of those, and, how would I get ALL the footnotes to publish immediately after the table instead of at the bottom of each page with some on the first page and others on the second page?

Thanks!
Pat
Dan
Posts: 501
Joined: Mon Feb 03, 2003 10:56 am

Re: DITA to PDF Using HTML5 and CSS: Footnotes

Post by Dan »

It looks like a bug on our side. It can be fixed by hiding the "on page" labels using the following CSS rule:

Code: Select all

*[class~="topic/xref"][type="fn"]:after{
   display:none !important;
}
Let us know if it worked for you.
Many regards,
Dan
Dan
Posts: 501
Joined: Mon Feb 03, 2003 10:56 am

Re: DITA to PDF Using HTML5 and CSS: Footnotes

Post by Dan »

Can you let us know what version of Oxygen are you using?
patjporter
Posts: 53
Joined: Sat May 22, 2021 6:04 pm

Re: DITA to PDF Using HTML5 and CSS: Footnotes

Post by patjporter »

Thanks Dan,

The version is: <oXygen/> XML Editor 23.1, build 2021030206

Pat
patjporter
Posts: 53
Joined: Sat May 22, 2021 6:04 pm

Re: DITA to PDF Using HTML5 and CSS: Footnotes

Post by patjporter »

Worked great, thanks!
Screen Shot 2021-10-11 at 12.25.30 PM.png
Screen Shot 2021-10-11 at 12.25.30 PM.png (186.64 KiB) Viewed 1086 times
Post Reply