[Tex/LaTex] glossaries package – How to change the name of the glossary

glossaries

I am using just one glossary in my document. I'd like to substitute its name "Glossary" with "List of Symbols".

I know I can create a new glossary and name it "List of Symbols" using

\newglossary{symbols}{sym}{sbl}{List of Symbols}

but this would force me to write type=symbols in every \newglossaryentry.

Is it possible to just change the name of the main (and sole) glossary or set symbols as the main glossary?

Best Answer

\printglossary[title={List of Symbols}]
Related Question