\includegraphics 后页面突然分成两列

\includegraphics 后页面突然分成两列

我正在使用以下包装图

    \begin{wrapfigure}{r}{0.59\textwidth}
        \vspace*{-25mm}
        \centering
        \includegraphics[width=10cm, height=10cm]{figures/spatialcoherence.png}
        \vspace*{-6mm}
        \caption{Spatial coherence method.}
    \end{wrapfigure}

并且\includegraphics里面的一行使得所有后续页面分成两列(见下图)。 在此处输入图片描述

如果我省略或注释掉该\includegraphics页面,它将再次变成单列(下图)。

在此处输入图片描述

知道这是怎么发生的以及为什么会发生吗?

我使用的软件包是:

\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=2.0cm]{geometry}
\usepackage{hyphenat}
\usepackage{MnSymbol}
\usepackage{bm} % bold math symbols
\usepackage{graphicx}  %package to manage images
\graphicspath{{./figures/}} % folder where the images or figures are
\usepackage{subcaption}
\usepackage[labelfont=bf]{caption} % make Figure 1 bold
\usepackage{wrapfig} % for wrapping a figure with words
\usepackage{hyperref} % for hyperlinks, citations
\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=blue,
    pdftitle={Peptide_analysis},
    pdfpagemode=FullScreen,
    }
\urlstyle{same}
\begin{document} ...

相关内容