I am trying to produce a list of symbols for my thesis by using the latex code provided in this link
I made the exactly copy but the part "List of Symbols" never shows up... Can someday help me to fix this?
Below you may find a minimum working example, and also a screenshot for the pdf file
\documentclass[english, reqno, 9pt]{amsart}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\usepackage{amssymb,amsmath,amsthm,amsfonts,color}
\usepackage{mathrsfs,dsfont, comment,mathscinet}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{mathtools}
\usepackage{babel}
%----------------------------------------------------------------------------------------%
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{lengthtree}%
{%
name={$L_t$},
text={L_t},
description={description here},
sort={L}
}
\title{Test}
\setlength{\parindent}{0cm}
\begin{document}
In line: $\gls{lengthtree}$. In math mode:
\[
\gls{lengthtree}
\]
\printglossary[title={List of Symbols}]
\end{document}
So as you can see, there is no "List of symbols" section... Please advise!


makeglossariesscript? Read the documentation for theglossariespackage, around page 19. You can access that by typing in your terminaltexdoc glossaries– Moriambar Apr 14 '17 at 16:48makeglossariesand the problem was solved by suggestion in the comments. – TeXnician Apr 14 '17 at 17:24