typora-issues
typora-issues copied to clipboard
[Please help]Footnotes in new page
The footnotes I exported appear on the last new page, which is different from the last page in the sample PDF after export. Did I do something wrong?
After some time exploring, I discovered the cause of the problem. The issue lies in the CSS for custom pagination. I use the following code for pagination.
@media print, (overflow-block: paged) or (overflow-block: optional-paged)
{
hr
{
page-break-after: always; /* CSS 2 */
break-after: region; /* CSS 3+ */
/* minimal layout disruption: */
height: 0.1mm; visibility: hidden;
}
}
This also causes the footnotes to be split across pages.
Is there a better way to make the pagination and footnote functions compatible?