On Tue, Dec 04, 2001 at 01:56:46PM -0500, Steve Litt wrote:
> On Tuesday 04 December 2001 13:39, Wolfgang Kilian wrote:
> > Hello altogether,
> >  I'm using Lyx 1.1.5.fix1 and want to change the linespacing within the
> > bibtex generatet references in an article style document. Unfortunately
> > I can't figure out how to.

> Start by grepping for the bibtex environment or command in /usr/share/texmf 
> tree. Find a \newenvironment, \newcommand, \renewenvironment, or 
> \renewcommand for that environment or command. Then paste that entire 
> definition into either your layout file or your document preamble, and add 
> code to change the line spacing. The code I would add is to put
> 
> \usepackage{setspace}
> 
> early in the preamble or layout, and then follow it any time later with the 
> above referenced code with something like
> 
>   \setlength{\parsep}{-1pt}
>   \setlength{\parskip}{-1pt}
>   \setstretch{0.8}
> or whatever makes the spacing right for you.

You don't need to copy the original definition. You can use something like
this (in the preamble):

\usepackage{setspace}
\let\oldbibliography\bibliography
\renewcommand{\bibliography}[1]{\setstretch{0.8}\oldbibliography{#1}}

Reply via email to