Hi,
> --
thanks a lot for attached small project,
turns out at
https://github.com/sphinx-doc/sphinx/issues/3652#issuecomment-303195583
there is a possible work-around at pdflatex level, it instructs
pdflatex to ignore the Sphinx hardcoded footnote numbers and
to number them itself. This also means they are numbered per
chapter in the final pdf (for docclass 'manual'), which
are sections in your sources.
Concrectely in your test-case this means using
```
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
'releasename': ' ',
# Additional stuff for the LaTeX preamble.
'preamble': r'''
\makeatletter
\def\FNH@footnoteenv@i[#1]{\FNH@footnoteenv}
\def\FNH@footnotetextenv@i[#1]{\FNH@footnotetextenv}
\def\sphinxfootnotemark [#1]%
{\ifx\thepage\relax\else\protect\spx@opt@BeforeFootnote
\protect\footnotemark\fi}%
\makeatother
''',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
```
as I pointed out in link above, this may not be fully robust
(there is a reason why Sphinx numbers itself the footnotes,
but obviously this goes bad in your use case)
Could you please open an issue at
https://github.com/sphinx-doc/sphinx/issues,
attaching your zip ?
Hope the above helps,
Jean-François