This following code is giving me the output without displaying the list of acronyms.
Code:
\documentclass{article}
\usepackage[acronym]{glossaries}
\makeglossaries
\newacronym{cd}{CD}{compact disk}
\begin{document}
\noindent
First use \gls{cd}\\
subsequent \gls{cd}
\printglossaries
\end{document}
Output:
First use compact disk (CD)
subsequent CD
Can someone please help me identify the issue? The same code works fine in overleaf. Probably some issue with installed glossaries package but not sure.
glossariespackage why not check the version with\listfiles– albert May 14 '18 at 17:10makeindex. (I don't know whether it does it explicitly or viamakeglossaries.) When you're not using Overleaf, you need to includemakeglossariesin your document build process. See, for example, List of Acronyms is not displayed, How to makeglossaries with TeXworks? and Using Texmaker with glossaries on Windows – Nicola Talbot May 15 '18 at 10:53