A
A
Ar123sj2020-09-25 02:07:33
TeX
Ar123sj, 2020-09-25 02:07:33

How to implement text in two columns without wrapping in TEX?

The situation is this, there is a document with pictures in the figure environment. You need to make the title in one line, and the main text in two.
I tried the multicolumn environment, but it eats pictures. In this case, if you use \twocolumn, there will be a transfer to the page. In this connection, the question is, is it possible to somehow remove the transfer or should multicolumn be friends with the figure environment? I would be grateful for the help.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
AVKor, 2020-09-25
@Ar123sj

\documentclass[12pt,onecolumn]{article}

\usepackage{blindtext}
\usepackage{float}
\usepackage{multicol}
\usepackage{graphicx}

\title{Something}
\author{Someone}

\begin{document}
\maketitle

\begin{multicols}{2}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
\begin{figure}[H]
  \includegraphics[width=\linewidth]{example-image-a}
  \caption{Some image}
\end{figure}
Curabitur dictum gravida mauris.

\blindtext
\end{multicols}

\end{document}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question