I have a file call mybib.bib. In my beamer presentation, I do this:
\usepackage[backend=bibtex,style=numeric]{biblatex}
\addbibresource{mybib.bib}
Then in the frame that I want the references to appear, I did:
\begin{frame}
\printbibliography
\end{frame}
This only prints out like 2 references in mybib.bib. I have more than 20 references. How do I get beamer to print out all references?
biblatexwill only print references that you actually\cited inthe document in the bibliography. If you want to see entries from the.bibfile in the bibliography that were not cited, use\nocite{<key>}or\nocite{*}to add all entries. See https://tex.stackexchange.com/q/17128/35864 – moewe Jul 27 '19 at 19:27\nocite{*}or\nocite{<entrykey>}anywhere in your document after you have loadedbiblatex. I think it makes sense to either issue it in the preamble close to\addbibresourceor in the document close to\printbibliography, but that's just personal preference. – moewe Jul 27 '19 at 19:37