Document Classesbeamer | Smaller Font Size for the Bibliography

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
man2011
Posts: 43
Joined: Tue Jan 11, 2011 4:19 am

beamer | Smaller Font Size for the Bibliography

Post by man2011 »

Dear All,
The question has been sorted out by using this

Code: Select all

\begin{frame}{reference}
\small
\bibliography{info}
\end{frame}
[/color]

I want to resize the font of the bibliography (to make it smaller )in in the beamer..?

How could I do that that:

Code: Select all

\documentclass{beamer}
\usetheme{Boadilla}
\useinnertheme{rounded}
\usepackage[round]{natbib}
\bibliographystyle{chicago}

\begin{document}
\def\newblock{\hskip .11em plus .33em minus .07em}


\begin{frame}{Thanks}
Thank you for your listening \dots
\end{frame}

\bibliography{info}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

nzborsti
Posts: 2
Joined: Wed Jun 01, 2011 5:31 pm

Re: beamer | Smaller Font Size for the Bibliography

Post by nzborsti »

Hi,

found this one and it works just fine. May you give it a try!?

\begin{frame}[shrink=30]
\frametitle{References}
\bibliographystyle{ieeetr}
\small\bibliography{bib}
\end{frame}

cheers
Post Reply