Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to restart \footnote numbering every page [closed]

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..¿?

like image 520
legami Avatar asked Sep 13 '10 14:09

legami


People also ask

How do you restart page numbering in Word?

To choose a format or to control the starting number, go to Header & Footer > Page Number > Format Page Numbers. To change the numbering style, select a different style in Number format. To change the starting page number of the newly created section, select Start at, and then enter a number. Select OK.

Do you restart footnote numbering on each page?

Formatting Guidelines Notes consist of one numbered list, do not restart numbering on each page or try to "reuse" a footnote number when citing a source more than once throughout the paper. Footnotes/endnotes are double spaced, and the first line only is indented from the left margin.

How do I restart numbering in new section?

Start with 1.Double-click the numbers in the list. The text will not appear selected. Right-click the number you want to start a new list. Click Restart at 1.

Why can I not Restart Numbering in Word?

Position the cursor at the start of the numbered list item. Right-click and select Restart Numbering from the context-menu. When the dialogue box pops up, set the numbering to restart at whatever number you want.


2 Answers

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”

like image 102
fgysin Avatar answered Oct 14 '22 09:10

fgysin


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

  • Master and slave counters
  • Footnotes numbered “per page”
like image 39
Sjoerd Avatar answered Oct 14 '22 09:10

Sjoerd