I meet a problem of putting a table at the bottom of a conference paper. Because I want this table to be very small so I use the following way (I learned here before):
\documentclass[letterpaper, 10 pt, conference]{IEEEconf}
\begin{document}
\begin{figure*}[b]
\footnotesize
\hrulefill
\begin{table}
\caption{An Example of a Table}
\label{table_example}
\begin{center}
\begin{tabular}{|c||c|}
\hline
One & Two\\
\hline
Three & Four\\
\hline
\end{tabular}
\end{center}
\end{table}
\end{figure*}
\end{document}
However, latex shows:
! LaTeX Error: Float(s) lost.
How do I fix it? What does that mean? Please advise, thanks!


bis impossible withfigure*in a two-column environment. LaTeX can place such floats only at the top of a page (t) or on a float page (p). If you think you learnt this here before, can you please provide a link? I always annotate my code with comments giving sources, partly for purposes of proper attribution and partly so I can easily find such resources again. Hopefully, you either do this or can turn it up in a search. I ask because I suppose you must not have learnt quite this here. – cfr Mar 04 '18 at 00:30ieeeconf.clsnot found. You meanIEEEconf? – cfr Mar 04 '18 at 00:39