如何用文本填充 SCfigure 中 caption 留下的空白

如何用文本填充 SCfigure 中 caption 留下的空白

sidecap包带来了SCfigure环境,使得字幕可以放置在的左侧或右侧figure

我有一个很长的图,占据了大部分空间textheight。我希望我的标题出现在图旁边。标题和图都横跨纸张,因此在整个图消失后,文本会从标题上方的一个位置跳转到另一个位置。

问题出现在尝试利用标题留下的大量白色区域时,该区域不如图形长。我想删除它并强制在那里排版文档的文本。

我尝试过混合 minipage和,wrapfigureSCfigure完全没有成功。下面我提供了一个显示此空白的最小工作示例。

\documentclass{article}
\usepackage{mwe}
\usepackage[innercaption]{sidecap}
\begin{document}

\blindtext

\begin{SCfigure}[1][!h]
  \caption{The space above should be filled with text that skips the caption when it is reached.}
  \includegraphics[height=0.45\textheight, width = 0.4\textwidth]{example-image-b}
\end{SCfigure}

\blindtext

\end{document}

相关内容