Graphics, Figures & Tables ⇒ Multi-page Table with page width in two column article
Multi-page Table with page width in two column article
Thank you in advance
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Multi-page Table with page width in two column article


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
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
Multi-page Table with page width in two column article
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