I have a table that spans multiple pages. So naturally I used the longtable environment in the landscape mode.
The table works fine but output has large amount of vertical cell padding and sometimes result in having just one row in one page. Any help on how to remove them and make the following table look acceptable.
\begin{landscape}
\begin{longtable}{|m{3.0cm}|m{8.5cm}|m{8.5cm}|}
\hline
Algorithm & Advantages & Disadvantages \\
\hline
Method A &\begin{itemize}
\item Have a variable history window controlled by the weight parameter.
\item Resilient to noise and impurities in data.
\end{itemize} & \begin{itemize}
\item Difficult to gauge the sensitivity of the weight parameter.
\item Has a tendency to loose pattern information during averaging.
\end{itemize}\\
\hline
Method B & \begin{itemize}
\item Fixed number of pervious input vectors provide fine grain control over the amount of history the algorithm considers when making classifications.
\item Does not loose pattern information as in averaging.
\end{itemize} & \begin{itemize}
\item Is not very resilient to noise or impurities in data.
\item Increasing the number of previous input vectors appended to the current input vector will increase the dimensionality (curse of dimensionality) of the overall input vector and the weight vectors of the SOM.
\end{itemize}\\
\hline
\caption{Summary of Methods}
\label{tab:summaryAlgorithms}
\end{longtable}
\end{landscape}
Following is the output of the above code (I want to make sure that there is no vertical padding)



longtablebut to all table's environments. Answers for your problem I already see in SE, however, I can not temporary remember at which questions. – Zarko Dec 29 '15 at 10:57m{...}withp{...}(this will align lists on top), (ii) before each list in cell put `\vspace{-\baselineskip}. This should resolve your problem at least on the top side of cells. – Zarko Dec 29 '15 at 11:07longtable. You could havesubsectionheadings for each algorithm, then just a pair of lists side by side using minipages, or twocolumn. – Thruston Dec 29 '15 at 11:40longtable, i.e. some solutions as used in given links doesn't work in it. – Zarko Dec 29 '15 at 11:58