On Fri, Feb 08, 2002 at 03:53:45PM +0000, Sarah Mount wrote:
> On Fri, 8 Feb 2002, Tuukka Toivonen wrote:
>
> > On Fri, 8 Feb 2002, Sarah Mount wrote:
> >
> > >I want to have a list of references without the "References" section
> >
> > Well, the easiest way is to write
> > \renewcommand{\refname}{}
>
> Ah! That works, although there's still a big gap between the section title
> and first reference.
Put the following in the preamble
(and remove the \renewcommand{\refname}{} line)
\let\oldthebibliography=\thebibliography
\renewcommand{\thebibliography}{%
\makeatletter%
\renewcommand{\section}[2]{}%
\renewcommand\@mkboth[2]{}%
\oldthebibliography}