Graphics, Figures & Tables ⇒ Multi-page Table with page width in two column article
Multi-page Table with page width in two column article
Hello, I want to insert a table in a two column article in Latex. What I need is the table to be as wide as the page and spanning across multiple pages. How can that be done???
Thank you in advance
Thank you in advance
NEW: TikZ book now 40% off at Amazon.com for a short time.

Multi-page Table with page width in two column article
For tables spanning multiple pages, packages
longtable and
supertabular come to mind.
Switching to single column you can achieve by
KR
Rainer


Switching to single column you can achieve by
Code: Select all
\onecolumn
% put your table here
\twocolumn
Rainer
Multi-page Table with page width in two column article
Hello. I used these latex commands but it broke the page and it inserted the table in a new page and the text after the table was inserted in another new page. Too much of white blank space. How can I solve this thing. By the way how can I make the table split to several pages?
Multi-page Table with page width in two column article
That's right,kspanakis wrote:I used these latex commands but it broke the page and it inserted the table in a new page and the text after the table was inserted in another new page. Too much of white blank space.
\onecolumn
and \twocolumn
both start a new page. If you wish to switch between modes within the same page, discard "twocolumn" from the option list for your documentclass, add \usepackage{multicol}
to your preamble and surround everything that's to be set in two-column-mode by
Code: Select all
\begin{multicols}{2}
%...
\end{multicols}
Read my previous answer again. It contains links to the documentation of two packages that allow multipage tables. Pick one.kspanakis wrote:By the way how can I make the table split to several pages?
KR
Rainer
Multi-page Table with page width in two column article
Sorry. I focused too much on the code that I missed the links on longtable and supertabular. The problem is that I want to write an article for IEEE journal, therefore I use the IEEtran document class which is always two column. What I want is to deactivate temporarily the two column to insert a page-wide multi-page table and then reactivate the two column.
Multi-page Table with page width in two column article
Well then, perhaps you should have a little talk with whom-ever-you're-about-to-turn-your-article-in-to, if a little white space is even a problem.
If, on the other hand, you wish to pursue this issue further:
should do what you want regarding the switching to/from single column.
KR
Rainer
If, on the other hand, you wish to pursue this issue further:
Code: Select all
\documentclass[onecolumn]{IEEEtran}
\usepackage{multicol}
%...
\begin{document}
\begin{multicols}{2}
% stuff in two-column mode
\end{multicols}
% put your table here
\begin{multicols}{2}
% stuff in two-column mode again
\end{multicols}
\end{document}
KR
Rainer
-
- Posts: 1
- Joined: Wed May 10, 2023 6:23 pm
Multi-page Table with page width in two column article
Hello Rainer,rais wrote:Well then, perhaps you should have a little talk with whom-ever-you're-about-to-turn-your-article-in-to, if a little white space is even a problem.
If, on the other hand, you wish to pursue this issue further:should do what you want regarding the switching to/from single column.Code: Select all
\documentclass[onecolumn]{IEEEtran} \usepackage{multicol} %... \begin{document} \begin{multicols}{2} % stuff in two-column mode \end{multicols} % put your table here \begin{multicols}{2} % stuff in two-column mode again \end{multicols} \end{document}
KR
Rainer
if I apply this code, is this a permanent change? or I have to apply it every time?
Multi-page Table with page width in two column article
I don't really understand what you'd expect to be permanently changed by the code provided, it simply makes use of the fact thatColorado2011 wrote: if I apply this code, is this a permanent change? or I have to apply it every time?

KR
Rainer