\documentclass[10pt]{article}
\input{hicss51-packages.tex} %its basically twocolumn document class
\newcommand{\sansserifformat}[1]{\fontfamily{cmss}{ #1}}%
\usepackage{tabularx, multirow, booktabs}
\begin{table*}
\begin{tabular} {>{\raggedright\arraybackslash}p{2.9cm}>{\raggedright\arraybackslash}p{2.9cm}>{\raggedright\arraybackslash}p{2.9cm}>{\raggedright\arraybackslash}p{2.9cm}>{\raggedright\arraybackslash}p{2.9cm}}
................
\end{tabular}
\end{table*}
I have a table. But it starts with the new page in a two column document environment. I want that table immediately after my text just like the following figure. Not in a new page. Which code I need to implement here just to make the text and remaining table in a single page.

multicolpackage or atwocolumndocumentclass? – leandriis Jul 13 '20 at 14:22stripenvironment (cutedpackahe). – Bernard Jul 13 '20 at 14:29I want that table just after my text not from a new page.
– Md. Abdullah Jul 13 '20 at 16:22longtable, orxltabular, which combinestabularxandlongtable. If I remember well, it works insidestrip. – Bernard Jul 13 '20 at 17:02