Hi, I have a situation when I have same footnote content repeat again, how to remove the repeat one in the footnote area?
Example:
<html>
<head>
<style>
@page {
counter-reset: footnote;
}
.fn {
float: footnote;
}
</style>
</head>
<body>
<p>
My in come: 2.4<span class="fn" >in millions dollars</span>.
</p>
<p>
Your income: 100<span class="fn">in thousand dollars</span>.
</p>
<p>
His income: 0.5<span class="fn" >in millions dollars</span>.
</p>
<p>
Her income: 20<span class="fn">in thousand dollars</span>.
</p>
</body>
</html>
The footnote generate will be like:
-----
[1] in millions dollars
[2] in thousand dollars
[3] in millions dollars
[4] in thousand dollars
Is there a way to remove the duplicate footnotes?
i want to make footnotes in multiple page like this:
-----
[1] in millions dollars
[2] in thousand dollars
Thanks,
Example:
<html>
<head>
<style>
@page {
counter-reset: footnote;
}
.fn {
float: footnote;
}
</style>
</head>
<body>
<p>
My in come: 2.4<span class="fn" >in millions dollars</span>.
</p>
<p>
Your income: 100<span class="fn">in thousand dollars</span>.
</p>
<p>
His income: 0.5<span class="fn" >in millions dollars</span>.
</p>
<p>
Her income: 20<span class="fn">in thousand dollars</span>.
</p>
</body>
</html>
The footnote generate will be like:
-----
[1] in millions dollars
[2] in thousand dollars
[3] in millions dollars
[4] in thousand dollars
Is there a way to remove the duplicate footnotes?
i want to make footnotes in multiple page like this:
-----
[1] in millions dollars
[2] in thousand dollars
Thanks,