I want a table that is as wide as the whole page in a document with option twocolumn. The table has to be inserted on the bottom of the page, but that is not necessary.
I've tried:
\begin{table*}[b]
...
\end{table*}
But that puts the table at the end of the document instead of on the same page. I also tried:
\twocolumn[
\begin{table}[b]
...
\end{table}
]
But that gives me an error: ! Argument of \@xfloat has an extra }.
Combining \twocolumn and the star mark gives the same error.
What's the right way to do this?