使节标题打破两列流

使节标题打破两列流

我是 LaTeX 新手,正在编写一个使用 的文档\documentclass[twocolumn]{article}。是否可以使\section标题打破两列流?澄清一下,我希望较长的章节标题延续到通常由第二列占据的空间,并且两列流将继续在标题下方\section

我想我读过关于使用 minipages 实现这一点的文章,但我宁愿不要让内联标记变得复杂。序言解决方案会更可取。

答案1

我使用该multicol包来实现此目的,而不是使用该twocolumn选项。

在你的序言中:

\usepackage{multicol}
\setlength{\columnsep}{1.5cm}
\setlength{\columnseprule}{0.1pt}

文档中写道:

\section{Long section name}
\begin{multicols}{2}
Your very long text
\end{multicols}

\section{Another long section name}
\begin{multicols}{2}
Your very long text
\end{multicols}

有关该multicol软件包和所有自定义选项的详细信息,请参阅http://www.tex.ac.uk/ctan/macros/latex/required/tools/multicol.pdf

您还可以使用multicol来拥有 3 列(或更多列):

\begin{multicols}{3}
This goes in three columns
\end{multicols}

\begin{multicols}{5}
This goes in five columns
\end{multicols}

相关内容