包装图永不结束

包装图永不结束

说实话,我对 LaTeX 的使用经验并不多。话虽如此,我浏览过关于这个主题的所有相关文章,但似乎什么都做不了。我试图让一个图形换行,但我认为我的部分和小节妨碍了操作,因为文本在图形之后不会换行,而文档的其余部分也是如此。

My problem

相关代码为:

\documentclass{article}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\usepackage{ctable}
\usepackage{xcolor,colortbl}
\usepackage{tipa}
\usepackage{graphicx}
\usepackage{wrapfig}

\usepackage[margin = 1.0in]{geometry}

\pagestyle{plain}
\definecolor{Gray}{gray}{0.80}

\begin{document}
    \titlespacing{\section}{0pt}{0pt}{11pt}
    \titlespacing{\subsection}{0pt}{11pt}{0pt}

    \section{Project Narrative}

    \subsection{Preliminary Results}
    At this time, a simple Linear GP has been implemented, ...

    \subsection{Proposed Research}
    To answer the proposed questions the PI will ... Figure \ref{fig:flow1}.

    \begin{wrapfigure}[10]{R}{0.50\textwidth}
        \begin{center}
            \includegraphics[width = 0.48\textwidth]{ea_flow}
        \end{center}
        \caption{Shows the flow of execution ...}
        \label{fig:flow1}
    \end{wrapfigure}

    \subsubsection{Phenotype}
    The phenotype for this research ...

    \subsubsection{Genotype}
    The genotype for this research will ...

/end{document}

任何有助于解决该问题的帮助都将不胜感激。

答案1

我做到了

\end{wrapfigure}\leavevmode

现在一切都正常了。(但我想这个解决方案并不理想。我也没有太多经验)

enter image description here

相关内容