When i am running the code and generating pdf (from tools to commands to biber in Texstudio), the references page is not giving numeric numbering to the references, instead a small box if forming.
\documentclass[11pt]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\setbeamertemplate{frame numbering}[fraction]
\setbeamercolor{progress bar}{fg=green,bg=blue}
\makeatletter
\setlength{\metropolis@progressinheadfoot@linewidth}{3pt}
\makeatother
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{float}
\usepackage[style=numeric]{biblatex}
\addbibresource{references.bib}
\author{Anshul Sharma}
\title{Symmetry in Quantum Mechanics}
\institute {CENTRAL UNIVERSITY OF HIMACHAL PRADESH}
\begin{document}
\begin{frame}[plain]
\begin{tikzpicture}[remember picture, overlay]
\node[anchor=north east] at ($(current page.center)+(-2,-2)$){\includegraphics[width=0.3\linewidth, scale=0.1]{"CUHP LOGO"}
}
;
\end{tikzpicture}
\maketitle
\end{frame}
\begin{frame}
\frametitle{Overview}
\tableofcontents
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Symmetries in Classical Physics}
Hi\cite{Cosmic} Bye\cite{PeriodicPotential}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Translation Symmetry}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Rotational Symmetry}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Degeneracy}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Parity}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Time Reversal Symmetry}
\end{frame}
\begin{frame}\vspace{-5cm}
\frametitle{Symmetries in Dirac Equation}
\end{frame}
\begin{frame}
\printbibliography
\end{frame}
\end{document}
Also how to add table of content in the beamer. Do i need to add section/subsection command for generating pdf or the frame title will do its job.
My bib File
@misc{goldstein2002classical,
title={Classical mechanics},
author={Goldstein, Herbert and Poole, Charles and Safko, John},
year={2002},
publisher={American Association of Physics Teachers}
}
@misc{zettili2003quantum,
title={Quantum mechanics: concepts and applications},
author={Zettili, Nouredine},
year={2003},
publisher={American Association of Physics Teachers}
}
@book{griffiths2018introduction,
title={Introduction to quantum mechanics},
author={Griffiths, David J and Schroeter, Darrell F},
year={2018},
publisher={Cambridge University Press}
}
@book{chaichian1997symmetries,
title={Symmetries in Quantum Mechanics: From Angular Momentum to Supersymmetry (PBK)},
author={Chaichian, M. and Hagedorn, R.},
isbn={9780750304085},
lccn={97048375},
series={Graduate Student Series in Physics},
url={https://books.google.co.in/books?id=pEhjQgAACAAJ},
year={1997},
publisher={Taylor \& Francis}
}
@article{article,
author = {Vaccaro, Joan},
year = {2015},
month = {02},
pages = {},
title = {Quantum asymmetry between time and space},
volume = {472},
journal = {Proceedings of the Royal Society A: Mathematical, Physical and Engineering Science},
doi = {10.1098/rspa.2015.0670}
}
@book{sakurai2014modern,
title={Modern quantum mechanics},
author={Sakurai, Jun John and Napolitano, Jim and others},
volume={185},
year={2014},
publisher={Pearson Harlow}
}
@MISC{Pinterest,
author = {{Google images}},
title = {Noether Theorem},
year = {2020},
note = {[Online; accessed May 7, 2020]},
url = {https://www.pinterest.es/pin/322851867018550297/?amp_client_id=CLIENT_ID(_)&mweb_unauth_id=&from_amp_pin_page=true}
}
@MISC{Cosmic,
author = {{Google images}},
title = {Beta decay},
year = {2020},
note = {[Online; accessed May 13, 2020]},
url = {http://cosmic-horizons.blogspot.com/2014/04/the-greatest-experiment-youve-never.html}
}
@MISC{PeriodicPotential,
author = {{PDF}},
title = {Periodic Poetntial},
year = {2020},
note = {[Online; accessed May25 , 2020]},
url = {http://www.physics.rutgers.edu/~eandrei/chengdu/reading/Energy_Bands.pdf}
}
@MISC{Energy,
author = {{Google images}},
title = {Energy Degenracy lifting up},
year = {2020},
note = {[Online; accessed May 25, 2020]},
url = {https://i.stack.imgur.com/ixmAe.png}
}
@book{boas2006mathematical,
title={Mathematical methods in the physical sciences},
author={Boas, Mary L},
year={2006},
publisher={John Wiley \& Sons}
}
@book{schwabl2012advanced,
title={Advanced quantum mechanics},
author={Schwabl, Franz},
year={2012},
publisher={World Publishing Corporation}
}
@article{article,
author = {Jugdutt, B. and Marsiglio, F.},
year = {2012},
month = {11},
pages = {},
title = {Solving for three-dimensional central potentials using matrix mechanics}
}
@article{article1,
author = {Jelic, V. and Marsiglio, F.},
year = {2012},
month = {09},
pages = {},
title = {The double-well potential in quantum mechanics: A simple, numerically exact formulation},
volume = {33},
journal = {European Journal of Physics},
doi = {10.1088/0143-0807/33/6/1651}
}

\setbeamertemplate{bibliography item}{\insertbiblabel}as shown in the answer to the question I linked to in my previous comment? – leandriis Jul 21 '20 at 06:58\vspaceis not the best work-around for that as it causes problems with longer contents. To globally top align all contents of all frames, use\documentclass[t]{beamer}. (To locally change the alignment, use\begin{frame}[t]). See also Positioning content at the top of a beamer slide (by default) – leandriis Jul 21 '20 at 07:06\usepackage[style=numeric]{biblatex}and on next line i write\addbibresource{references.bib}and then at last i use\printbibiliography(which i have shown you in the code). Did you run my code. You might see the problem. – Anshul Sharma Jul 21 '20 at 07:10\begin{frame}[t]worked perfectly – Anshul Sharma Jul 21 '20 at 07:14\setbeamertemplate{bibliography item}{\insertbiblabel}to the preamble of your document. – leandriis Jul 21 '20 at 07:46