I’m writing a short document using sections rather than chapters as the top-level (documentclass report). However,
\bibliographystyle{amsplain}
\bibliography{general}
causes the bibliography to be inserted as a chapter rather than a section. Is there any way to change this?
By default, the
reportdocument class uses\chapteras the bibliography heading level. In contrast, thearticledocument class uses\sectionas the bibliography heading level. If you’re not using\chapteranywhere in your document, you might want to use thearticleclass instead.If you really want to use the
reportclass, you’ll need to redefine thethebibliographyenvironment to use\sectioninstead of\chapter. In the preamble of your document (after the\documentclassline but before the\begin{document}line, insert the following:Now your bibliography will have a
\sectionheading instead of a\chapterheading.Note that if you load any special bibliography packages, you might want to put this code before those packages are loaded (so you don’t overwrite their work).