Text FormattingOnecolumn without page break

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
tikorost
Posts: 2
Joined: Wed Sep 18, 2019 9:59 am

Onecolumn without page break

Post by tikorost »

Hi guys. How can I make a one column in a two column article, without page breaking???
I am writing an article to submit to NIM. The article should be 2 columns.
In one of the pages I need to put a wide figure at the top of the page, and then continue with 2 column text, like in the attached Screenshot_1.png...
But the way I am trying this, latex puts the 2 column continuation to a new page...
Is this possible in Latex without page break?

This is how I try:
\documentclass[12pt]{elsarticle}
\journal{Nucl. Instrum. Methods A}
\begin{document}

\begin{twocolumn}
bla, bla, bla
\end{twocolumn}
\onecolumn
\begin{figure}[t]
\begin{center}
\includegraphics[width=17.4cm]{pic/RESULTS_SUM.pdf}
\label{Si_Results}
\end{center}
\end{figure}

\begin{twocolumn}
bla, bla, bla,
\end{twocolumn}
\end{document}
Attachments
Screenshot_1.png
Screenshot_1.png (283.5 KiB) Viewed 13756 times
Last edited by tikorost on Wed Sep 18, 2019 1:33 pm, edited 1 time in total.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Onecolumn without page break

Post by Ijon Tichy »

For twocolumn documents with elsarticle you should use either option twocolumn (with additional option 3p) or option 5p. See the manual for more information. However, \twocolumn is a command, that should not be misused as an environment. See an introduction into LaTeX for more information.

Figures spanning both columns can be placed top aligned using figure* environment instead of figure. See also an introduction into LaTeX for more information.
Code, edit and compile here:
\documentclass[12pt,twocolumn]{elsarticle}
\journal{Nucl. Instrum. Methods A}
\usepackage{blindtext}
\begin{document}
\Blindtext[3]
\begin{figure*}[t]
\centering% Do not use center environment, it adds additional vertical space
\includegraphics[width=.7\textwidth]{example-image}
\caption{Testfigure}\label{Si_Results}
\end{figure*}
\Blindtext[3]
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
tikorost
Posts: 2
Joined: Wed Sep 18, 2019 9:59 am

Onecolumn without page break

Post by tikorost »

THANK YOU VERY MUCH! Done!!! It WORKS!!!
Post Reply