I am writing a thesis and I would like to produce Acronyms list and glossary in the table of content. This my latex here
\documentclass[8pt]{report}
%\usepackage[T1,T2A]{fontenc}
%\usepackage[toc,page]{appendix}
\usepackage{appendix}
\usepackage{chngcntr}
\usepackage{lipsum}
\usepackage[acronym]{glossaries}
\makeglossaries
\newglossaryentry{latex}
{
name=latex,
description={Is a mark up language specially suited for
scientific documents}
}
\newglossaryentry{maths}
{
name=mathematics,
description={Mathematics is what mathematicians do}
}
\newglossaryentry{formula}
{
name=formula,
description={A mathematical expression}
}
\newacronym{abcp}{ABCP}{Asset Backed Commercial Paper}
\newacronym{aig}{AIG}{American International Group}
\newacronym{bcbs}{BCBS}{Basel Committee on Banking Supervision}
\newacronym{cdo}{CDO}{Collateral Debit Obligation}
\newacronym{cds}{CDS}{Credit Default Swap}
\newacronym{cmbs}{CMBS}{Commercial Mortgage-Backed Securities}
\newacronym{cva}{CVA}{Credit Valuation Default}
\newacronym{ead}{EaD}{Exposure at Default}
\newacronym{fsb}{FSB}{Financial Stability Board}
\newacronym{gfc}{GFC}{Global Financial Crisis}
\newacronym{mbs}{MBS}{Mortgage-Backed Securities}
\newacronym{otc}{OTC}{Over-The-Counter}
\newacronym{pfe}{PFE}{Potential Future Exposure}
\newacronym{rc}{RC}{Replacement Cost}
\newacronym{rmbs}{RMBS}{Residential Mortgage-Backed Securities}
\newacronym{saccr}{SA-CCR}{Standard Approach for Counterparty Credit Risk}
\newacronym{us}{US}{United States
}
\begin{document}
\newpage
\setcounter{page}{1}
\pagenumbering{roman}
\tableofcontents
\printacronyms
\listoffigures
\listoftables
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\chapter{Introduction}\label{chap1}
\end{document}
How do I produce the list acronyms, I tried \printacronyms but they are still not showing
