将标题放在相邻行

将标题放在相邻行

在双列文档中,我有 1 列长的图表。因此,标题不适合放在其下方。我怎样才能将标题放在相邻的列中?请查看图片以了解详情:

在此处输入图片描述

答案1

您可以使用capt-of(或者caption)以下列方式放置临时浮动标题:

\captionof{<type>}[<toc entry>]{<caption>}

以下最小示例使用了上述建议,但严重依赖于文档布局:

在此处输入图片描述

\documentclass[twocolumn]{article}

\usepackage{capt-of,graphicx}
\usepackage{lipsum}

\begin{document}

\section{A section}
\lipsum[2-3]\lipsum[3]

\captionof{figure}{This is a figure caption}

\begin{figure}[t]
  \includegraphics[width=\columnwidth,height=.99\textheight]{example-image}
\end{figure}

\clearpage

\lipsum[4-7]

\end{document}

相关内容