I assume this is a duplicate but I couldn't find this precise problem here nor in the docs.
I am using supertabular to create a long table spanning multiple pages with \midrule after the head and\hline after each row.
Unfortunately, on the second page, the \midrule and the \hline are shown (see picture below), while I would like to have only the \midrule there, i.e. I would like to "skip" this particular \hline. Is that somehow possible.
MWE:
\documentclass{memoir}
\usepackage{supertabular}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\usepackage{forloop}
\begin{document}
\renewcommand{\arraystretch}{1.3}
\centering
\tablefirsthead{\toprule Row Counter & Random Header \\ \arrayrulecolor{black} \midrule \arrayrulecolor{lightgray}}
\tablehead{Row Counter & Random Header \\ \arrayrulecolor{black} \midrule \arrayrulecolor{lightgray}}
\tabletail{ \\ \arrayrulecolor{black} \bottomrule \arrayrulecolor{lightgray} \multicolumn{2}{l}{\small \textit{Random tail text.}}\\}
\tablelasttail{\\ \arrayrulecolor{black} \bottomrule}
\bottomcaption{Random caption text.}
\newcounter{rowcounter}
\begin{supertabular}{p{3cm}|p{9cm}}
\forloop{rowcounter}{0}{\value{rowcounter} < 70}{line \arabic{rowcounter} & random text \\ \hline }
last line & random text
\end{supertabular}
\end{document}


