On Tue, 12 Mar 2002, Guenter Milde wrote:
> On Tue, 12 Mar 2002 13:26:33 +0100 wrote Ramin Yasdi <[EMAIL PROTECTED]>:
>
> > I want to have Title and Author in one column, the rest in two column.
> > I use \onecolumn and \twocolumn in latex mode. But lyx makes page
> > breaks
> > after these lines. What I am doing wrong?
> > \nopagebreak doesn't work
>
> Title and Author create a titlepage in the book and report documentclass.
>
> Try article documentclass (Layout->Document: Class). Or play with the
> paragraph styles Section*, Subsection* or use Standard, mark the Text and
> set the fontstyle with Layout->Character.
Or the multicol package can be used...
add \usepackage{multicol} in preamble.
and after Author write ..
\begin{multicols}{2}
your text...
\end{multicols}
Wayan