Is there a way to reset the footnote counter every page without getting errors and warnings?
If I use \usepackage[perpage]{footmisc} I get an error.
If I use \usepackage{perpage} \MakePerPage{footnote} I get a warning.
MWE
\documentclass{article}
\usepackage{paracol}
\footnotelayout{m}
\usepackage{blindtext}
\begin{document}
\blindtext{1}
\begin{paracol}{2} % left column
\textbf{Hello, I'm column one.}\footnote{I'm a footnote.}
\blindtext{1}
\switchcolumn % right column
\textbf{Hello, I'm column two.}\footnote{I'm a footnote.}
\blindtext{1}
\end{paracol}
\blindtext{1}
\blindtext{1}
\begin{paracol}{2} % left column
\textbf{Hello, I'm column one.}\footnote{I'm a footnote.}
\blindtext{1}
\switchcolumn % right column
\textbf{Hello, I'm column two.}\footnote{I'm a footnote.}
\blindtext{1}
\end{paracol}
\end{document}