Besides having issues with forced nopagebreaks, a cline does not seem to work on a regular pagebreak. Only hline seems to work. How can I get clines to work on Longtables?
\documentclass{article}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{hhline}
\begin{document}
\vspace*{170mm}
\begin{longtable}{|c|c|}
\hline %same result
Mkay & Okay \\ \cline{1-2}
Mkay & Okay \\ \cline{1-2}
Mkay & Okay \\ \cline{1-2}
Mkay & here \\ \cline{1-2}%\hhline{--}
Hmm & Okay \\ \cline{1-2}
\end{longtable}
\end{document}
\ltcline{--}instead of \cline. – Ulrike Fischer Oct 21 '17 at 09:14