BibTeX, biblatex and biber ⇒ Spreading Bibliography on several slides
Spreading Bibliography on several slides
I needed to generate a bibliographical list in a LaTeX presentation, however the list is too long to fit in one slide.
How to split the list on several slides ?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Spreading Bibliography on several slides
you could use the option allowframebreaks for those frames:
Code: Select all
\begin{frame}[allowframebreaks]
\begin{thebibliography}...
Re: Spreading Bibliography on several slides
My presentation is prepared using powerdot, so how to do it ?
The powerdot manual mentions something about using natbib and bibentry packages but it didn't work with me, even I can't add natbib package in the preamble because it gives an error !!
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Spreading Bibliography on several slides
When I'm using powerdot with a clean preamble, I don't get an error if I load natbib and bibentry and the way described in the manual works for me.
Perhaps we could help if you provide enough information, for instance a minimal example code.
Stefan
Spreading Bibliography on several slides
If you wrote a tex file doing that, could you please upload it and I will be thankful ?When I'm using powerdot with a clean preamble, I don't get an error if I load natbib and bibentry and the way described in the manual works for me
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Spreading Bibliography on several slides
Code: Select all
\documentclass{powerdot}
\usepackage[numbers]{natbib}
\usepackage{bibentry}
\begin{filecontents}{test.bib}
\@article{Test1,
title = {Test data},
author = {Person, A.},
journal = {J. Made Up Results},
page = {1-10},
year = 2009
}
\@article{Test2,
title = {Test data},
author = {Person, A.},
journal = {J. Made Up Results},
page = {11-29},
year = 2009
}
\@article{Test3,
title = {Test data},
author = {Person, A.},
journal = {J. Made Up Results},
page = {30-39},
year = 2009
}
\end{filecontents}
\begin{document}
\begin{slide}{References (1)}
\bibliographystyle{plain}
\nobibliography{test}
\bibentry{Test1}
\bibentry{Test2}
\end{slide}
\begin{slide}{References (2)}
\bibentry{Test3}
\end{slide}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Spreading Bibliography on several slides
My test file is looking very similar because it's been written just using that piece of powerdot documentation.
Stefan
Re: Spreading Bibliography on several slides
I think that the problem was that the bibliography style was not numeric, when I changed to plain style it worked !
but actually it's not what I wanted.
Anyway, I think that I will change to beamer .. since an elementary feature such as controlling slide breaks isn't available in powerdot!