On Fri, Feb 07, 2003 at 11:36:15AM -0500, [EMAIL PROTECTED] wrote:
> I know this has been answered previously, but I can't seem to find the
> reference,
> and the tips and tricks discussion of it doesn't seem to work in my case.
>
> My problem is this ... I have one main document which has a number of
> chapters. Each chapter contains bibliographic references (bibtex
> references),
> and the main document also contains a bibliographic environment at the
> end. Now I want the bibliographic data to print only at the end in the main
> document, once all the chapters are collated, and I don't want
> bibliographic
> matter at the end of each chapter. How can I do this?
Write the following in the preamble,
\let\oldthebibliography=\thebibliography
\def\thebibliography#1{}
Also, before the bibliography in the master file (before the bibtex inset)
write
\let\thebibliography=\oldthebibliography
in latex mode.