Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

one and two column on the same page

3,158 views
Skip to first unread message

Dominique Roddier

unread,
Jul 31, 1998, 3:00:00 AM7/31/98
to
Is it possible to toggle \onecolumn and \twocolumn on the same page
without having latex perform the \clearpage command.
Basically, I need my abstract to be across the whole page (onecolumn)
but then the paper underneath is in two column format and I can't
get it to start on the same page.

Thanks
Dominique.

Donald Arseneau

unread,
Aug 1, 1998, 3:00:00 AM8/1/98
to
In article <35C212...@eddy.berkeley.edu>, Dominique Roddier <rod...@eddy.berkeley.edu> writes...

>Is it possible to toggle \onecolumn and \twocolumn on the same page
>without having latex perform the \clearpage command.

No... but you don't need that.

>Basically, I need my abstract to be across the whole page (onecolumn)
>but then the paper underneath is in two column format and I can't
>get it to start on the same page.

As you have seen, \maketitle already does this with the title.

You can define a document class to put the abstract in as part
of the title by redefining \maketitle.

Or you can call \twocolumn explicitly. This requires some tricks:
\begin{document}

\twocolumn[
\begin{@twocolumnfalse}

\maketitle
\begin{abstract}
...
\end{abstract}

\end{@twocolumnfalse}
]

Unfortunately, \thanks will not work in the author list. If you need such
specially-numbered footnotes, you can make them like this:

\title{Demonstration}
\author{Me, You\thanks{}}% No point in typing anything here!
\begin{document}

\twocolumn[
... as above ...
]
{\renewcommand\thefootnote{\fnsymbol{footnote}}
\footnotetext[1]{Thanks for nothing!}
}
Donald Arseneau as...@triumf.ca

Peter Wyzlic

unread,
Aug 1, 1998, 3:00:00 AM8/1/98
to
>> Dominique Roddier wrote Fri, 31 Jul 1998 11:52:03 -0700:

DR> Is it possible to toggle \onecolumn and \twocolumn on the same
DR> page without having latex perform the \clearpage command.
DR> Basically, I need my abstract to be across the whole page
DR> (onecolumn) but then the paper underneath is in two column format
DR> and I can't get it to start on the same page.

Get multicol.sty (or rather multicol.{ins,dtx}). And say
\begin{multicols}{2}
...
\end{multicols}

\bye
Peter

Myknees

unread,
Aug 1, 1998, 3:00:00 AM8/1/98
to
In article <35C212...@eddy.berkeley.edu>, Dominique Roddier
<rod...@eddy.berkeley.edu> writes:

>Is it possible to toggle \onecolumn and \twocolumn on the same page


>without having latex perform the \clearpage command.

>Basically, I need my abstract to be across the whole page (onecolumn)
>but then the paper underneath is in two column format and I can't


>get it to start on the same page.

Maybe this is a newbie suggestion, but you could use \mark and then a
conditional in your headline, so that if the mark is on the page that is
currently being processed for output, it will get a headline that sneakily
includes the abstract.

--Ed (Myknees)

0 new messages