I have a Latex template here: http://www.ieee.org/documents/IEEEtran.zip
This is a double col tex document. I wish to include a large table, landscape style.
When I do the below, it does not work as the table overlaps the headers on the page (ie the table overwrites the headers). This is using \usepackage{geometry}.
How can I get it to recocgnize the fact that the template has headers?
Many Thanks
Code: Select all
\clearpage
\begin{landscape}
\begin{table*} %http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Wide_figures_in_two_column_documents
\centering
\begin{center}
\captionof{table}{{\bf blah}
\vspace{0.2cm}
\footnotesize
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}
%% STuff here
\end{tabular}
\label{contracts}
\vspace{0.1cm}
\normalsize
\end{center}
\end{table*}
\clearpage
\end{landscape}