[Tex/LaTex] Full page, full width table of contents using ieeeconf class

ieee-styleieeeconftable of contentstemplates

I'm trying to make a full page, full width table of contents. I'm using following class:

\documentclass[letterpaper, 10 pt, conference]{ieeeconf}

and every time I try to use \tableofcontents, I get a half paged table.

How to make it full page and width?

Best Answer

From your question is not very clear (to me), how your document (article?) should look:

  • as one column article: in this case you should declare

\documentclass[letterpaper, 10 pt, conference, onecolumn]{ieeeconf}
% other used packages and title definition

\begin{document}
%title, abstract etc
\tableofcontents
% rest of article 
\end{document}

  • as combined layout where the \tableofcontents is in one column, the following rest of document in standard twocolum:

\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
% other used packages and title definition

\begin{document}
%title, abstract etc
\onecolumn
\tableofcontents
\twocolumn
% rest of article is in two column
\end{document}

  • as combined layout where for the \tableofcontents is reserved whole first page in one column layout and the following rest of pages intwocolum layout:

\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
% other used packages and title definition

\begin{document}
%title, abstract etc
\onecolumn
\tableofcontents

\clearpage
\twocolumn
% rest of article is in two column
\end{document}

For testing above cases I need from you a Minimal Working Example (MWE). See, which of above cases you actually like to have.

Related Question