Glossary

The glossary lists all the terms used throughout your document. You should define these terms in the parts/_glossary.tex file, each with a brief description. For example:

Glossary: An alphabetical list of terms accompanied by brief explanations.

Thesis: Scholarly documents detailing research and findings, required for academic degrees.

\newglossaryentry{glossary}{
  name=glossary,
  plural=glossaries,
  description={An alphabetic list of terms with brief descriptions.}
}
\newglossaryentry{thesis}{
  name=thesis,
  plural=theses,
  description={Scholarly document detailing research and findings, required for academic degrees.}
}

To use these glossary entries within your text, use the \gls{} command.

Previous