将文本部分向右移动

将文本部分向右移动

我在页面左侧有一张大图片,右侧有引用该图片的文字。我的问题是,目前的代码使文本与图片重叠。它看起来像这样:

\newpage    
\begin{wrapfigure}{l}{0.5\textwidth}    
\vspace{-2cm}     
\includegraphics[width=0.8\textwidth]{pics/dummy.png}    
\vspace{-100cm}    
\end{wrapfigure}    
\section{Test}    
text referring to picture    
text referring to picture    
text referring to picture    
\end{document}

答案1

我认为您应该删除\vspace{-100cm}\vspace{-2cm}[width=0.8\textwidth]

您应该将最后一个放入环境设置中,而不是最后0.8一个wrapfigure

相关内容