Bonjour à tou.tes !
In my document (compiled with LuaLaTeX) the footnote counter restarts at 1 in each new chapter. How do I do to number all footnotes continuously?
For example:
\documentclass[10pt,a4paper,openany,notitlepage]{book}
\usepackage[bottom]{footmisc}
\begin{document}
Bonjour,
I'm trying\footnote{to use footnotes} hard !
\chapter{Chapter one}
Here I am\footnote{out there} so lost with it !
This is not a footnote\footnote{yolo}.
\chapter{Chapter 2}
encore une\footnote{cirhose}
\end{document}
After compilation:


\counterwithout{footnote}{chapter}should help you (if you are using an older version of LaTeX you may have to load thechngcntrpackage). – moewe Jan 11 '19 at 15:32