Possible Duplicate:
How to make a figure span on two columns in a scientific paper?
It's my first time working with a two-column document (declared as an argument to \documentclass) and I need to put in a very wide figure. The thing is, LaTeX puts it bounded by a column so it either (1) gets truncated, bleeding off the border or [right column] or (2) displays with an awkward text/line wrapping. Is there any way for me to get it to display the way \maketitle does, that is, at the top of the page (ideally) but at least spanning both columns and no awkward line wrapping?
BTW, I use the following code to display my figure:
\begin{figure}
\centering
\includegraphics[width=6in]{tictac.png}
\caption{\textsf{The structure of our tic-tac-toe implementation.}}
\label{fig:ds}
\end{figure}

