I have downloaded a .bib file, but I don't know how to reference this file in beamer, and it only appears on the current page, not the last page. This is a minimal case, how can I add?
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[backend = biber,
style = numeric,
urldate = long,
maxcitenames = 2,
defernumbers=true
]{biblatex}
\addbibresource{my.bib}
\begin{document}
\begin{frame}
\newrefsection
\begin{refsegment}
Here is an example a reference\cite{2014IB}.
\end{refsegment}
\printbibliography[segment=1]
\end{frame}
\end{document}
This is my.bib file:
@misc{2014IB,
author = {Hu, Zhonghan},
title = {Infinite Boundary Terms of Ewald Sums and Pairwise Interactions for Electrostatics in Bulk and at Interfaces},
journal = {Journal of Chemical Theory and Computation},
volume = {10},
number = {12},
pages = {5254-5264},
year = {2014},
doi = {10.1021/ct500704m},
note ={PMID: 26583209},
URL = {
https://doi.org/10.1021/ct500704m
},
eprint = {
https://doi.org/10.1021/ct500704m
}
}


