I have almost exactly the same question as asked in Using multibib without an extra title, however, with a different documentclass: amsart.
Asked
Active
Viewed 92 times
1 Answers
0
Using the same approach as gernot in his answer, you can define \removebibheader as:
\makeatletter
\newcommand{\removebibheader}{%
\let\@bibtitlestyle\relax
}
\makeatother
You would then place the command before the bibliography, surrounding it by block quotes:
{\removebibheader
\bibliographynovels{novels}
}
\bibliofont, which is defined in amsart as\footnotesize, because by nullifying the\@bibtitlestylewe also nullified the code in\@startsectionthat started a new paragraph. You can fix this by adding this line of code to the definition of\removebibheader:\if@noskipsec \leavevmode \fi\par– BrianBartling Aug 28 '19 at 14:09