この例のように、画像の周囲にテキストを折り返すにはどうすればいいでしょうか?制限はありません。任意のオプションを使用できます。
答え1
あなたの問題をよく理解しているのであれば、cuted
パッケージ(sttools
バンドルから)とそのstrip
環境を使用する必要があります。次に例を示します。
\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}