Graphics, Figures & TablesIEEEtran | Landscape and two-columned Journal Articles

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
sw3quant
Posts: 76
Joined: Tue Nov 02, 2010 11:40 pm

IEEEtran | Landscape and two-columned Journal Articles

Post by sw3quant »

Hello.

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}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
justdeath
Posts: 69
Joined: Mon Sep 05, 2011 10:27 am

Re: IEEEtran | Landscape and two-columned Journal Articles

Post by justdeath »

Use \thispagestyle{empty} after \clearpage.

Next time do some thinking first.

Also if you upload files to edas.info you'd better use MiKTeX, cause TeXLive on Windows has some problems (on Linux is fine).
Post Reply