How to restart \footnote numbering every page [closed]
Asked Answered
A

2

16

I have more than 9 footnotes, so I need to restart the footnote numbering. I know that I can force that adding [1] in the 10th item, but I want something automatic.

How can I do it? Adding some word every page..¿?

Ardin answered 13/9, 2010 at 14:59 Comment(3)
What do you mean you have to restart the footnote numbering ?Rector
Every page I add a new footnote automatically is [1], then [2]....and so on. Next page, again [1] ....Ardin
Cross-site duplicate: tex.stackexchange.com/questions/1656/…Setiform
C
31

One solution is the perpage package, that provides a general mechanism for resetting counters per page. Put the command \usepackage{perpage} and \MakePerPage{footnote} into your document preamble, immediately after the \documentclass line and before the \begin{document} line.

\documentclass{article}
\usepackage{perpage} %the perpage package
\MakePerPage{footnote} %the perpage package command
\begin{document}

The interface is pretty simple: \MakePerPage{footnote} will do the job. If you want to restart the counter at something other than 1 (for example to avoid something in the LaTeX footnote symbol list), you can use: \MakePerPage[2]{footnote}. It’s a first-rate package, small and efficient.

Reference: TeX FAQ entry Footnotes numbered “per page”

Crispy answered 17/9, 2010 at 9:38 Comment(0)
P
6

Reset the footnote counter, or make it reset by page:

Polacca answered 13/9, 2010 at 15:4 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.