8

I am using the thebibliography command in LaTeX to generate a bibliography under a "References" heading at the end of a paper. My bibliography is not stored in a separate TeX file, but rather is just typed under the command \begin{thebibliography} at the end of the paper. I would like to reduce the font size of my bibliography. I tried using the command suggested in the first answer here How to change font size for bibliography?, but it did not seem to work for me. It appears to be intended for documents with a separate bibliography file, which I do not have. Does anyone have any suggestions as to how I can reduce the font size with thebibliography?

1 Answer 1

14

Enclose the thebibliography environment in a group and switch to \footnotesize within the group. EDIT: Or even better, switch to \footnotesize inside the thebibliography environment.

\documentclass{article}

\begin{document}

\section{foo}

Some text in \verb|\normalsize| \cite{test}.

\begin{thebibliography}{9}
\footnotesize

\bibitem{test} A bibliography item in \verb|\footnotesize|.
\end{thebibliography}

\end{document}

enter image description here

3
  • Thanks, this worked. Is there any way to reduce the spacing between bib items?
    – user15464
    Commented Dec 31, 2011 at 22:38
  • Add \setlength{\itemsep}{0pt} after \footnotesize.
    – lockstep
    Commented Dec 31, 2011 at 22:43
  • How to reduce the size of the word References ? Commented Apr 14, 2016 at 17:45

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .