wrappfiure 乳胶重叠图像文本形成不良

And*_*tti 5 latex

在此输入图像描述

我正在使用背面在线来编译我的报告,并且我在换行图上遇到了这个问题。特别是超过 6 厘米的重量时,我遇到了如图所示的问题,图像与文本重叠,而与图像的大小无关,连续页面中存在一些具有奇怪结构的文本。有人能帮我吗?

 \documentclass[a4paper,14pt]{extarticle}
  \usepackage{geometry}
     \usepackage[latin1]{inputenc}
   \usepackage{amsmath}
 \usepackage{amsfonts}
 \usepackage{amssymb}
 \usepackage{graphicx}
 \usepackage{subcaption}
 \usepackage{multicol}
\usepackage[english]{babel}
   \usepackage{graphicx,bm,times}
 \usepackage{mathtools}
 \usepackage{subcaption}
 \usepackage{wrapfig}
 \usepackage{siunitx}
 \usepackage{gensymb}
 \usepackage{amsmath}
 \usepackage{geometry}
  %\geometry{lmargin=1in,rmargin=1in}
   ...
   to suppress axial growth during GaInP shell growth, the nanowire cores were taken out from the reactor and the Au seed particles were removed using a cyanide based Au etchant. Shell growth was carried out in the same MOCVD as the core, using PH3, (TMIn), and TMGa as precursors gases.The shell growth temperature was set to 600 $\textdegree $C.

  \begin{wrapfigure}{l}{0.25\textwidth}
 \includegraphics[width=6cm,height=7cm]{IMAGES/nanos1.png} 
%\caption{Caption1}
\label{fig:wrapfig}
\end{wrapfigure}
Transmission electron microscopy \textbf{TEM} and Electron Diffraction Spectroscopy \textbf{SEM} allow to investigate nanowires revealing its crystal structure: pure zinc blende, (without wurtzite segments, stacking faults, or twins).  Particularly high-resolution transmission electron microscopy showed dense fringes indicating significant strain (Fig A). 
Run Code Online (Sandbox Code Playgroud)

And*_*tti -1

您可以向 wrapfigure 命令添加一个额外的选项:

\begin{wrapfigure}[22]{L}{0.45\textwidth}
Run Code Online (Sandbox Code Playgroud)

其中“22”代表您想要换行的行数。

(感谢回复评论的珍妮!)