I'm currently facing the problem that when the last bibliography entry on a page is too long to fit in the remaining space, it's being split in two parts (in the current and the next page).
\documentclass[12pt,a4paper,oldfontcommands,oneside]{memoir}
\usepackage[nosectionbib]{apacite}
\begin{document}
\clearpage
\bibliographystyle{apacite}
\bibliography{References}
\end{document}
I already tried the following, which was suggested in the posting Preventing page breaks from occurring in bibliography items, but it doesn't affect the page breaks for long bib entries.
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\clubpenalty4000}{\clubpenalty10000}{}{}
\patchcmd{\thebibliography}{\widowpenalty4000}{\clubpenalty10000}{}{}
How to prevent the last bibliography entry on a page from being split in a new page ?
\widowpenalty. Can you spot it? – Mico Mar 09 '16 at 20:19