Writing code for two tables and I want to start 2nd table right way the end of 1st table. But 2nd table is starting from the 2nd page keeping large space on the 1st page. I want to strictly start the 2nd table and if the part of the table need to go beyond the 1st page its ok to split.
How can I do so?
Here is my current situation,
For code,
\subsubsection{Classifications}
\noindent
(i) Based on the type of battery RFID tags can be of three types:
\begin{table}[H]
\centering
\small
\begin{tabular}{ |c|p{3cm}|p{9cm}|}
\hline
\thead{Ser} & \thead{Item} & \thead{Detail}
\\ \hline
1. & Active & \begin{itemize}[nosep]
\item Has its own transmitter and power source (Battery)
\item Transmits signal from the microchip circuit through the power obtained from the internal battery
\item High signal range
\item Larger in size
\item Expensive than passive
\item The batteries must be replaced
periodically
\end{itemize} \\ \hline
2. & Passive & \begin{itemize}[nosep]
\item Operate without a separate external power source
\item Obtains operating power from the reader
\item Low signal range
\item Cheaper than active tags
\item Smaller in size
\end{itemize} \\ \hline
3. & Semi passive/ Battery Assisted Passive (BAP) & \begin{itemize}[nosep]
\item Has a small battery and is activated when in the presence of an RFID reader
\item Communication method is same as the passive tag
\end{itemize} \\ \hline
\end{tabular}
\end{table}
\newpage
\noindent
(ii) Based on the mode of operation tags can be of three types:
\begin{table}[H]
\centering
\small
\begin{tabular}{ |c|p{3cm}|p{9cm}|}
\hline
\thead{Ser} & \thead{Item} & \thead{Detail}
\\ \hline
1. & Read-only & \begin{itemize}[nosep]
\item Has its own transmitter and power source (Battery)
\item Transmits signal from the microchip circuit through the power obtained from the internal battery
\item High signal range
\item Larger in size
\item Expensive than passive
\item The batteries must be replaced
periodically
\end{itemize} \\ \hline
2. & Read-write & \begin{itemize}[nosep]
\item Operate without a separate external power source
\item Obtains operating power from the reader
\item Low signal range
\item Cheaper than active tags
\item Smaller in size
\end{itemize} \\ \hline
3. & WORM & \begin{itemize}[nosep]
\item Has a small battery and is activated when in the presence of an RFID reader
\item Communication method is same as the passive tag
\item It can write data only once, after that works as read only
\end{itemize} \\ \hline
\end{tabular}
\end{table}



[H]which by design gives massive white spaces rather than move the table. – David Carlisle Mar 13 '20 at 18:03tableandtabluarform unbreakable boxes that do not split over a page break. a normal float would move the table to a suitable place but as you have used[H]then you force latex to leave a space. – David Carlisle Mar 13 '20 at 18:05[H]disables the floating mechanism. – David Carlisle Mar 13 '20 at 18:13