I have a problem with controlling spaces between different object and environment. In my MWE you can see I use quote and \footnote on the one page. Unfortunatelly when I use them lines on adjoining pages (on even and odd pages) don't harmonize (as you can see).
I try to set spaces between text and quotations by using \vspaces but it doesn't want to work always. Sometimes it's ok, but sometimes last line goes to the next page. I try to make (I think I try) the space between text and footer more flexible, but it doesn't work as I want.
Do you know what is the best way to control it?
I don't want to use \raggedbottom, because I want my columns to be equal.
Thank you for any help.
PS. Do you know if there is any package to show a grid in my document?
\documentclass{book}
\usepackage[
centering,
top=12mm,
headheight=14pt,
headsep=11pt,
includeheadfoot,
papersize={160mm,235mm},
text={125mm,190.7mm},
]{geometry}
\setlength{\parskip}{0pt}
\setlength{\parindent}{14pt}
\setlength\floatsep{12pt plus 12pt minus 2pt}
\clubpenalty10000
\widowpenalty10000
\sloppy
\setlength{\skip\footins}{11pt plus 11pt minus 4pt}
\usepackage{footmisc}
\setlength{\footnotesep}{0pt}
\frenchspacing
\usepackage{lipsum}
%-----------------------------------------------------------------------------
\begin{document}
\fontsize{11}{14}\selectfont
\lipsum
\begin{quote}
\small Some text Some text Some text Some text Some text Some text Some text Some text Some text
\end{quote}
\lipsum[1]\footnote{Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text }
\begin{quote}
\small Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text
\end{quote}
\lipsum[1-3]
\end{document}