I have several TikZ graphics on one page. To add a description on the right side of the graphics I use the paracol package (is there a better way to do this?).
As you can see on the picture below the last graphic doesn't fit on page 1. This even results in bad positioning of footnotes, e.g. footnote 1 should appear on page 1.
How can deal with this problem without adding \newpage manually?
MWE
\documentclass{article}
\usepackage{paracol}
\footnotelayout{m}
\usepackage{tikz}
\begin{document}
\begin{paracol}{2} % left column
\begin{tikzpicture}[scale=0.55]
% help lines
\draw[step=1,help lines,black!20] (-5,-5) grid (5,5);
% axis
\draw[thick,->,black!75] (-5,0) -- (5,0);
\draw[very thick,->] (0,-5) -- (0,5) node[pos=0.97,left] {$y$};
\end{tikzpicture}
\switchcolumn % right column
I'm a description.
\end{paracol}
\begin{paracol}{2} % left column
\begin{tikzpicture}[scale=0.55]
% help lines
\draw[step=1,help lines,black!20] (-5,-5) grid (5,5);
% axis
\draw[thick,->,black!75] (-5,0) -- (5,0);
\draw[very thick,->] (0,-5) -- (0,5) node[pos=0.97,left] {$y$};
\end{tikzpicture}
\switchcolumn % right column
I'm a description.\footnote{I'm a footnote.}
\end{paracol}
\begin{paracol}{2} % left column
\begin{tikzpicture}[scale=0.55]
% help lines
\draw[step=1,help lines,black!20] (-5,-5) grid (5,5);
% axis
\draw[thick,->,black!75] (-5,0) -- (5,0);
\draw[very thick,->] (0,-5) -- (0,5) node[pos=0.97,left] {$y$};
\end{tikzpicture}
\switchcolumn % right column
I'm a description.
\end{paracol}
\begin{paracol}{2} % left column
\begin{tikzpicture}[scale=0.55]
% help lines
\draw[step=1,help lines,black!20] (-5,-5) grid (5,5);
% axis
\draw[thick,->,black!75] (-5,0) -- (5,0);
\draw[very thick,->] (0,-5) -- (0,5) node[pos=0.97,left] {$y$};
\end{tikzpicture}
\switchcolumn % right column
I'm a description.\footnote{I'm a footnote.}
\end{paracol}
\end{document}
If you change the scale of the tikz pictures to 0.59 you can see the following




figure+paragraphpairs in http://tex.stackexchange.com/questions/154401/vertical-align-a-tabular-and-tikz-figure-in-a-minipage – Ignasi Apr 26 '16 at 16:30