`\section{}` 只有一列,但正文有两列

`\section{}` 只有一列,但正文有两列

我希望各部分和表格分布在各列中,但段落和小节又分为两部分。我还希望图表能够贴在部分的右侧,如下所示:

words words words  words words.

Section title foo bar baz  .-------.
                           | Image |
Words words words  words   '-------'
words words words  words words words
words words words  words words words

图像的顶部与部分标题的顶部相接。

我该如何做呢?

答案1

对于与figure通常位置不同的图形,使用

\usepackage{wrapfig}

并在相应的环境中包含以下数字:

\begin{wrapfigure}{r}{0.25\textwidth}
[\includegraphics, \caption, \label, etc]
\end{wrapfigure}

对于在双列文本中调用的表格(和图形),您可以编写\begin{table*}并使\end{table*}它们分布在双列文档中。

要同时拥有单列和双列,您可以\usepackage{multicol}在单列文档中使用它来获取具有两列的文档的部分,如下所示:

\begin{multicols}{2}
Some two column text
\end{multicols}

但我想在文档中混合一列和两列可能会变得混乱......

编辑:插入图形可能比这更复杂。您可能必须在文本中移动它们以将它们放在右列中,并且需要更复杂的解决方案才能将图形放在它们同时与单列和双列文本重叠的区域(如果可能的话)...

相关内容