On Tue, Feb 06, 2001 at 03:37:38PM +0200, Tuukka Toivonen wrote:
>
> The second % doesn't seem to be necessary, it is enough just to have one
> between the abstracts. It's surprising how easily this works now that LyX
> can use many languages in one document from the GUI. And multiple
> "abstract" paragraphs don't seem to bother LaTeX either.
It is necessary, because curenly LyX misplaces the \selectlanguage command:
\begin{abstract}
Tämä puolestaan on suomenkielinen tiivistelmä.
\selectlanguage{english}
\end{abstract}
which means that the rest of the document is now considered Finnish.
The correct latex code should be
\begin{abstract}
Tämä puolestaan on suomenkielinen tiivistelmä.
\end{abstract}
\selectlanguage{english}
The second % (in Finnish language) is a workaround for this problem.
I will fix the problem in the next version.