0

I am using a two column document using

\usepackage{twocolceurws}

I have an image which I want to place after a particular section. Here's the issue - The text above the image is like about half a section. So, I want the text to wrap around equally in both sections and then the image. Here's an image describing it

I have tried using float, but that places the image over the text. I have also tried figure*, but that puts all the images in a new page, but I want them in the same page. I also tried the fullwidth package, but can't seem to get it to work without errors

I am using Overleaf, if that makes any difference

Destux
  • 21
  • 2
  • 1
    Try this question. There's also a reference to a short answer in FAQ. – Celdor Oct 21 '23 at 07:49
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Oct 21 '23 at 07:57
  • is twocolceurws (which is not a package I have seen before) a requirement, or are standard two column systems also a possibility? also what is the reading order in your sketch, is the second block bottom left or top right? As always, your question would be clearer if you provided a test document and described what you wanted its output to be. – David Carlisle Oct 21 '23 at 08:45
  • @Celdor I had seen that, the figure* did not work, but the second comment works! Just 1 more slight issue, it's inserting a random charachter "7" in between multiple strips... I cannot figure out why... – Destux Oct 21 '23 at 09:24
  • @DavidCarlisle it's not a requirement, just a package another contributor added for making the format, we can certainly change that. I'm sorry if the reading is confusing, it's top left -> top right and then the image. The question is more or less solved, but I appreciate your reply, thanks! – Destux Oct 21 '23 at 09:29
  • @Destux You could try to use stfloats, which adds optional ``[b]argument tofloat*. It then should place your image at the bottom. I don't know if it's compatible withtwocolceurws`. – Celdor Oct 21 '23 at 11:30

1 Answers1

0

Try this code:

\documentclass[a4paper,twocolumn]{article}
\usepackage{cuted}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
    \lipsum[1]
    \begin{strip}
        \begin{center}
            \includegraphics[width=\linewidth]{example-image}
        \end{center}        
    \end{strip}
    \lipsum[3]
\end{document}

Output:

enter image description here

  • This is working, thanks, but there seems to be an issue where when adding multiple strips, there is a character "7" in between those strips... any ideas how I can workaround with that? – Destux Oct 22 '23 at 10:03