如何使文字環繞圖像,如本例所示?沒有任何限制。我可以使用任何選項
答案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}