使用 LaTeX 从两列环境中制作 1 列

pro*_*eek 4 latex

我用 制作了一个文档twocolumn,但有时twocolumn对于源代码列表来说太窄了。

我找到了multicols环境,使用如下:

% \documentclass[twocolumn]{article} % 我不使用拖列,而是多列
\documentclass[]{文章}
\usepackage{multicol}
...
\begin{multicols*}{2}

\section{简而言之}
...
\end{多列*}

% 现在我使用一列

\begin{multicols*}{1}
...
\end{多列*}

结果不是我想要的。 http://img3.imageshack.us/img3/6239/screenshot20100717at920.png

我的 LaTeX 代码有什么问题?你怎么办这个案子?

我试图使用一个figure*环境,但它只是漂浮在周围,所以我宁愿不使用它。

Her*_*itz 5

这给你你想要的吗?

\documentclass[]{article}
\usepackage{multicol}

\begin{document}

\begin{multicols}{2}

\section{In short}
double column text here. .double column text here. . . 
double column text here. . . 
double column text here. . . 
double column text here. . . 
 . 

\end{multicols}

% Now I use one column

% don't put any multicol command here, you're in outer
% single column document already

put single column text here. put single column text here. 
put single column text here. put single column text here. 
put single column text here. put single column text here. 
. . . 

\begin{multicols}{2}

\section{In short}
double column text here. . . 
double column text here. . . 
double column text here. . . 
double column text here. . . 
double column text here. . . 

\end{multicols}

\end{document}
Run Code Online (Sandbox Code Playgroud)