[Tex/LaTex] Changing the font size of a bibliography using BibTeX with the amsrefs package

amsrefsbibliographiesfontsize

I am using BibTeX with the amsrefs package to create a bibliography. The output of the bibliography looks to be of a slightly smaller font size that that of the ambient document, and it's imperative that these font sizes be equal. I have already tried

{\normalsize\bibliography{mybib}}

to no avail. Can anyone please steer me in the right direction? Thanks!

Best Answer

The font is controlled by the \biblistfont command; simply redefine this macro in your preamble (to change the default \footnotesize) by adding the following lines:

\renewcommand{\biblistfont}{%
  \normalfont
  \normalsize
}
Related Question