上图为长文本

上图为长文本

我想在图像上写点东西,所以我使用overpic包。但是,我的文本太长了,放不下,因为 LaTeX 一直在同一行上写,当达到图片的限制时,它不会转到下一行,这是我不想要的。我的文档类是standalone。这是我的代码:

\documentclass[convert=true]{standalone}

\usepackage{graphicx}
\usepackage[percent]{overpic}
\usepackage{picture}
\usepackage{xcolor}

\begin{document}

\begin{overpic}[scale = 0.5]{o1.png}
 \put(3,27){\color{red} some very very very long text that will not fit in the picture.}
\end{overpic}

\end{document}

输出如下:

在此处输入图片描述

有什么解决办法吗?

相关内容