I am trying to put a one column table after two column text (in two-columned environment) on the same page, like this:
Code: Select all
text text ...................
text text ...................
\begin{table*}[htb]
\caption{}
\begin{tabular}{C{2cm} C{2cm} C{2cm} C{2cm} C{2.1cm} C{2.4cm}}
..........
..........
\end{tabular}
\end{table*}
Code: Select all
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
Any suggestion?
Thanks.