1

This is the code in which I have the texts in two-column mode, but I want the figure to be placed in one-column without a page-break

\begin{figure}[ht]
\onecolumn\includegraphics[width=\columnwidth]{Capture.PNG}
  \caption{A system}
  \label{fig:1}

\end{figure}
\twocolumn
  • 1
    I would say that this is a duplicate of this: https://tex.stackexchange.com/questions/3173/how-to-make-a-figure-span-on-two-columns-in-a-scientific-paper ... (Didn't marked as dupplicate but found in two steps by searching "two column figure"...). My comment is just an advice of searching before posting a question. Welcome to TeX.SX! – koleygr Mar 15 '19 at 11:23

1 Answers1

2

You mean something like this?

\documentclass[10pt,a4paper]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
    \twocolumn
    \lipsum
    \begin{figure*}
        \includegraphics{example-image}
    \end{figure*}
\lipsum
\end{document}

to get:

enter image description here

Finally, welcome to TeX.se. Next time when you post a question, please post a MWE so that it will not only help the users but also attracts many people to answer your question.