如何让文字环绕图像?

如何让文字环绕图像?

如何让文字环绕图像,如本例所示?没有限制。我可以使用任何选项

在此处输入图片描述

答案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} 

在此处输入图片描述

相关内容