TeX - LaTeX Asked on November 1, 2021
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.3linewidth, 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}
Hicite{Cosmic} Byecite{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}
}
Changes in comparison to your original code:
Numbers in list of references instead of small images: I added setbeamertemplate{bibliography item}{insertbiblabel}
to the preamble. See also: How do I get numbered entries in a beamer bibliography
Duplicate heading in the "References" slide: the printbibliography
command inserts its own "References" heading. If you also use the frametitle
command, you end up with two "References" headings. To overcome this, use the [heading=none]
option as in printbibliography[heading=none]
.
Add a table of contents: In order to get a table of contents, use section
and subsection
commands throughout your document. If every frame is in its own section, you might also want to add metroset{sectionpage=none}
in order to disable the section frames that are otherwise automatically inserted by the metropolis
theme. In order to avoid repeating the section heading the the following frametitle
command, you can use secname
to access the name of the current section.
Vertical alignment: In order to top align the contents in all frames, add the t
option as in documentclass[11pt,t]{beamer}
. If you want to locally change the alignment, add the option to the frame
environment as in begin{frame}[t]
. See also: Positioning content at the top of a beamer slide (by default)
Here is the complete MWE:
documentclass[11pt,t]{beamer} %<----- top align all frame contents
usetheme[progressbar=frametitle]{metropolis}
setbeamertemplate{frame numbering}[fraction]
setbeamercolor{progress bar}{fg=green,bg=blue}
makeatletter
setlength{metropolis@progressinheadfoot@linewidth}{3pt}
makeatother
metroset{sectionpage=none} %<----- remove all section frames
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}
setbeamertemplate{bibliography item}{insertbiblabel} % <--- number references
begin{document}
begin{frame}
frametitle{Overview}
tableofcontents
end{frame}
section{Symmetries in Classical Physics} % <---- add sections in order to get them listed in the table of contents
begin{frame}{secname} % <----- secname here used the section's name as a frametitle
Hicite{Cosmic} Byecite{PeriodicPotential}
end{frame}
section{Translation Symmetry}
begin{frame}{secname}
end{frame}
section{Rotational Symmetry}
begin{frame}{secname}
end{frame}
section{Degeneracy}
begin{frame}{secname}
end{frame}
section{Parity}
begin{frame}{secname}
end{frame}
section{Time Reversal Symmetry}
begin{frame}{secname}
end{frame}
section{Symmetries in Dirac Equation}
begin{frame}{secname}
end{frame}
section{References}
begin{frame}{secname}
printbibliography[heading=none] % <----- heading= none is added in order to prevent a duplicate heading
end{frame}
end{document}
Answered by leandriis on November 1, 2021
You need to add sections as below--
The picture added is for the background and can be changed as per choice
All code taken from -- Table of contents in Beamer beamer
documentclass{beamer}
usetheme{Boadilla}
usepackage{tikz}
begin{document}
setbeamertemplate{background}{%
tikznode[opacity=0.3] at (current page.center)
{includegraphics[height=paperheight]{example-image}};}
begin{frame}
frametitle{Outline}
tableofcontents
end{frame}
setbeamertemplate{background}{}
section{Test Section One}
begin{frame}
Contents of section one
end{frame}
section{Test Section Two}
begin{frame}
Contents of section two
end{frame}
section{Test Section Three}
begin{frame}
Contents of section three
end{frame}
end{document}
Answered by js bibra on November 1, 2021
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP