I am trying to add a glossary to my .tex file.
A part of my code is:
\usepackage{nomencl}
\usepackage{makeidx}
\usepackage{imakeidx}
\makenomenclature
\begin{document}
%Glossary
\addcontentsline{toc}{chapter}{Glossary}
\include{Glossary}
\printnomenclature
\end{document}
In file Glossary.tex I have things like:
\nomenclature{thing1}{definition of thing1}
My problem is: when I get the .pdf file "Nomenclature" appears in the top of the page. I want it to be renamed "Glossary". What should I do?
\def\nomname{Glossary}most likely. Please don't post such fragments only and loadingimakeidxandmakeidxtogether is not recommended! – Aug 30 '16 at 13:14glossariespackage -- that's easier! – Aug 30 '16 at 13:20