Add bibliography to my beamer presentation

I would like to add my bibliography to my presentation in IEEE format. What should I add to my preamble and code.

\documentclass \setbeamertemplate[page number] \usepackage \usepackage \begin \section \begin \frametitle \end
I'm using the same bibTex which I use to make the IEEE paper. 24.4k 10 10 gold badges 95 95 silver badges 251 251 bronze badges asked Mar 10, 2018 at 9:26 111 1 1 gold badge 2 2 silver badges 7 7 bronze badges

There is no real difference to an article or a memoir document, so have a look at en.wikibooks.org/wiki/LaTeX/…

Commented Mar 10, 2018 at 9:27

i added the following code to my beamer but its of no use \usepackage[backend=biber] \section \begin \frametitle \addbibresource \printbibliography \end

Commented Mar 10, 2018 at 9:49 Please add a minimal working example to the question. Almost every question should contain one. Commented Mar 10, 2018 at 9:56 \usepackage[style=ieee] . The rest would be the same as in en.wikibooks.org/wiki/LaTeX/… Commented Mar 10, 2018 at 10:47 Off-topic: you don't need \usepackage with beamer Commented Mar 10, 2018 at 18:04

1 Answer 1

From your comments it seems as if you are using biblatex .

Adding a bibliogrpahy to beamer works as in any other documentclass. The main points are that you have to cite some works in the text, otherwise the bibliography will be empty and that \addbibresource should be used in the preamble.

The default IEEE style is numeric, which is a bit tricky, as beamer normally does not show the numbers in the bibliography. However they can be enables with \setbeamertemplate <\insertbiblabel>.

\documentclass \usepackage[style=ieee] \setbeamertemplate <\insertbiblabel>\usepackage \begin <\jobname.bib>@book, title = book>, date = 1984, maintitle = , volume = , publisher = , location = , langid = , langidopts = , sortyear = , sorttitle = , indexsorttitle= , indextitle = <\protect\TeX book, The>, shorttitle = <\TeX book>> @article, title = , journal = , volume = , number = , doi = , pages = , year = > \end \addbibresource <\jobname.bib>\begin \begin \cite \cite \end \begin \frametitle \printbibliography \end \end