文字转图

文字转图

我创建了一个新文档,其中有两列。我想在一列中插入图形(使用 wrapfig)。但是,文本与我的图形重叠。有人能解释为什么会发生这种情况以及如何解决吗?

使用输入 输出

答案1

wrapfig包用于允许文本环绕图形。这绝对不是 latex 的亮点,而且显然也不是您想要的。不要wrapfig为这张图片使用该包,而是使用通常的figure环境:

\documentclass[twocolumn]{article}

\usepackage{graphicx}
\usepackage{lipsum}

\begin{document}
\lipsum[1]
\begin{figure}[htp]
    \includegraphics[width=\linewidth]{example-image-a}
\end{figure}
\lipsum[2-5]
\end{document}

结果

编辑:来自 David Carlisle 的建议。[htp]尝试将人物定位在here。如果这不可能,则尝试第二个选项:top 位置。如果这也失败了,Latex 会将人物放在单独的p年龄人物上。

相关内容