8

I added \tiny before adding \bibliographystyle. But it is not changing the font size. Any suggestions for reducing the font size of the reference?

\tiny{
\bibliographystyle{IEEEtran}
\bibliography{refs.bib}
}
Corentin
  • 9,981
ssk
  • 183
  • if you trying to set bibliography to smaller then main (where main is pt.10)text just use \begin{thebibliography}...as i remember it makes it pt.8 or so .... – vveliev May 20 '13 at 08:30

2 Answers2

8

That is deliberately prevented. You must understand that the IEEEtran class really works as a sort of 'container' for the contents of your paper and effort has been made to have all the formatting already done, so all the papers in the journal/conference proceeding will look the same. So it's not a good idea to alter the formatting, unless you know, what you're doing. But enough of this sermon, of course there is a way around it. :) You should try to modify the font size in the preamble, like this:

\renewcommand{\bibfont}{\tiny}
Count Zero
  • 17,424
3

The following snippet has been "freshly" tested for one of my IEEE papers. :) Add somewhere in the preamble before \begin{document}:

\renewcommand{\IEEEbibitemsep}{0pt plus 0.5pt}
\makeatletter
\IEEEtriggercmd{\reset@font\normalfont\fontsize{7.9pt}{8.40pt}\selectfont}
\makeatother
\IEEEtriggeratref{1}

Here you can play with the spacing between items (first line), and the overall font size of the bibliography (third line). Works for me!

Troy
  • 13,741