sorry if this is already explained somewhere but I couldnt find anything. I'd like the footnotes within my paracol environment to appear not below it but instead at the bottom of my page, like all the others (and ideally also sorted correctly).
In Footnote problem using paracol package I've at least found a way to make my footnotes appear - I've implemented the code of the answer (credits to David Carlisle) but my footnotes created in the paracol-environment keep appearing directly after the environment instead of at the end of the actual page (footnotes created before/after the paracol environment appear at the end of the page).
MWE:
\documentclass[11pt]{article}
\usepackage{paracol}
\makeatletter
\newbox\mybox
\def\pcol@makenormalcol{%
\ifvoid\footins
\else
\global\setbox\mybox\box\footins
\fi
\setbox@outputbox\box@holdpg
\let@elt\relax
\xdef@freelist{@freelist@midlist}%
\global\let@midlist@empty
@combinefloats}
\makeatother
\begin{document}
some text\footnote{first footnote: before paracol}
\bigskip
\begin{paracol}{2}
table\footnote{second footnote: within paracol}
\switchcolumn
there is some text here
\end{paracol}
\ifvoid\mybox\else\insert\footins{\unvbox\mybox}\fi
\bigskip
some more text\footnote{third footnote: after paracol}
\end{document}```

