On Mon, Mar 11, 2002 at 04:15:47PM -0500, Wonil Chang wrote:
> > On Mon, Mar 11, 2002 at 03:55:20PM -0500, Wonil Chang wrote:
> > > Hello dear lyx (latex) gurus,
> > >
> > > While writing my thesis, I encountered a problem to solve. I tried to find
> > > answers in this mailing list and lyx tips, but I failed.
> > >
> > > I have lots of chemical reactions put into display formula. I have to use
> > > "\tag" in these equations and also have to use double space for line space (a
> > > requirement of my university). In actual double-spaced print-outs, there are
> > > too much space between the chemical equations. Is there any way to apply a
> > > single space to these equations or to adjust vertical space manually?
> Thank very much for your prompt reply.
> I'm sending you an example.
The main problem is that for putting several unaligned equations in a row,
the gather environment should be used and not the equation environment.
Unfortunately, lyx 1.1.6 does not support it, only 1.2.0cvs does.
A partial solution is to put the following lines in the preamble:
\let\oldnormalsize=\normalsize
\def\normalsize{\oldnormalsize%
\setlength{\abovedisplayskip}{0pt}%
\setlength{\belowdisplayskip}{0pt}%
}