¿Cómo hacer que el texto se ajuste alrededor de la imagen, como en este ejemplo? No hay restricciones. Puedo usar cualquier opción
Respuesta1
Si entiendo bien su problema, debería utilizar el cuted
paquete (del sttools
paquete) y su strip
entorno. Aquí hay un ejemplo:
\documentclass[twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
\usepackage[frenchb]{babel}
\usepackage{cuted, xcolor}
\usepackage{graphicx, caption, threeparttable}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\textsf{\color{red} Figure appelée ici : }
\begin{strip}\captionsetup{singlelinecheck = off}
\begin{measuredfigure}%[H]
\includegraphics[width = \textwidth]{Piero_di_Cosimo_1}
\caption[]{The Death of Procris (ca 1500)}
\end{measuredfigure}
\end{strip}
\lipsum[3-5]
\end{document}