Hi all,
I have a page with a single footnote tag. However, there are two footnotes elements generated in the PDF.
Here is the sample page. Since I am using xinclude, so the doc type is xhtml.
Thank you very much.
Regards,
Ben
I have a page with a single footnote tag. However, there are two footnotes elements generated in the PDF.
Here is the sample page. Since I am using xinclude, so the doc type is xhtml.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
body {
word-wrap: break-word;
}
.footnote {
display: prince-footnote;
counter-increment: footnote;
}
</style>
</head>
<body>
<p>
Click <a href="https://support.office.com/en-GB/article/PowerPoint-2013-training-courses-videos-and-tutorials-bd93efc0-3582-49d1-b952-3871cde07d8a?CorrelationId=d00f4381-c9ad-4129-8313-a23bfdab1dc9" target="_blank">here</a><span class="url"> (https://support.office.com/en-GB/article/PowerPoint-2013-training-courses-videos-and-tutorials-bd93efc0-3582-49d1-b952-3871cde07d8a?CorrelationId=d00f4381-c9ad-4129-8313-a23bfdab1dc9-a23bfdab1dc9)</span><span class="footnote">This is footnote</span>.
</p>
</body>
</html>
Thank you very much.
Regards,
Ben