twocolumnfalse 图像与文本重叠

twocolumnfalse 图像与文本重叠

我正在编写一个两列格式的文档,并希望将图像扩展到两列。因此,我的图像代码片段如下:

 \twocolumn[\begin{figure}
    \begin{@twocolumnfalse}
    \centering
    \includegraphics[width=5in, height = 4in]{SomeSampleAnswers.png}
    \caption{Some Outputs generated by the Learning Model}
    \label{fig:sample_figure}
       \end{@twocolumnfalse} 
     \end{figure}]

不幸的是,这会导致下面的文本(恢复为标准的 2 列格式)在图像区域重叠。我是不是漏掉了什么?

答案1

以下代码解决了该问题。

\usepackage{cuted}% for environment `strip`
\usepackage{graphicx}

在文件中:

\begin{strip}
  \centering
  \includegraphics{example-image}
  \captionof{figure}{\blindtext}
\end{strip}

相关内容