I have been having a lot of trouble whilst attempting to place a table which is the width of the page within a two column document.
SYSTEM: Vista 64.
Texnic Center: 1.0 Stable
MikTex: v2.7
I am using the IEEE journal template with the following packages:
Code: Select all
\documentclass[journal]{IEEEtran}
\usepackage{color}
\usepackage{colortbl}
\usepackage{fixltx2e}
\usepackage{array}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{fixltx2e} (It was stated this might cause problems)
%\usepackage{stfloats}
Here is an example of a table that I am trying to insert into the text:
Code: Select all
\begin{table}[htbp]
\begin{center}
\begin{minipage}{\textwidth}
\begin{tabular}{|l|c|c|c|c|c|c|}
\hline
Body of table here....
\hline
\end{tabular}
\label{Processes2}
\end{center}
\end{table}
ANY assistance would be greatly appreciated.