BibTeX, biblatex and biberbeamer | Bibliography over several Frames

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
erotavlas
Posts: 19
Joined: Thu Aug 04, 2011 3:53 pm

beamer | Bibliography over several Frames

Post by erotavlas »

Hi all,

I would like to add a references to my presentation. I know how to use the bibliography command for an article or thesis. I have tried to use it, but all references don't fit an a single slide and latex doesn't create new slide automatically.
How can I do?

Thank you

PS this is my latex code

Code: Select all

\documentclass[9pt]{beamer}

\usepackage{amsmath,amssymb,amsfonts}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{url}
\usepackage{hyperref}
\usepackage{setspace}

\graphicspath{{figure/}}

\newenvironment{myslide}[1] 
{\begin{frame}{\begin{center}#1\vskip-10pt\end{center}}}{\end{frame}}

\mode<presentation>
{
\usetheme[headheight=0.005cm,footheight=0.001cm]{Goettingen}
\usecolortheme{lily}
\setbeamertemplate{theorem}[ams style]
\setbeamertemplate{theorems}[numbered]
}

\setbeamertemplate{footline}[frame number]
\setbeamersize{text margin left=0.15cm,text margin 
\begin{document}

\begin{myslide} {References}
\bibliographystyle{plain}
\bibliography{bibliography} 
\end{myslide}

\end{document}
Last edited by erotavlas on Sat Sep 03, 2011 9:12 am, edited 1 time in total.

Recommended reading 2024:

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

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

erotavlas
Posts: 19
Joined: Thu Aug 04, 2011 3:53 pm

Re: beamer | Bibliography over several Frames

Post by erotavlas »

Nobody can help me?
Thank
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

beamer | Bibliography over several Frames

Post by frabjous »

You're much more likely to get help if you follow the Board Rules and provide a minimal working example that can actually be compiled by others.

In your case, I think using the allowframebreaks option to the frame in question should do the trick. See the beamer user's guide for details.
erotavlas
Posts: 19
Joined: Thu Aug 04, 2011 3:53 pm

Re: beamer | Bibliography over several Frames

Post by erotavlas »

I'm sorry for the example. I didn't tried it. Thank you very much for your suggestion. Now all work well.
:D
spinner
Posts: 17
Joined: Wed Apr 21, 2010 6:35 pm

Re: beamer | Bibliography over several Frames

Post by spinner »

I manually create a bibliography across several Beamer frames. Some time ago, I searched for an automated solution like you and recall that there isn't a good one.

More specifically, I cut and paste references across multiple Beamer frames until I get an appearance that is satisfactory. To ease the burden, I use EndNote to create the biblio and then cut and paste the formatted references from EndNote into my Beamer frames.
erotavlas
Posts: 19
Joined: Thu Aug 04, 2011 3:53 pm

beamer | Bibliography over several Frames

Post by erotavlas »

Thank you for your suggestions but I have already solved with this code

Code: Select all

\begin{frame}[allowframebreaks] {References}
\bibliographystyle{plain}
\bibliography{bibliography/bibliography} 
\end{frame}
Yeskot
Posts: 1
Joined: Thu Feb 24, 2022 8:59 pm

beamer | Bibliography over several Frames

Post by Yeskot »

Thank you, this helped me.
Post Reply