0

I'm trying to get the \glossaries package to work but no luck. This MWE compiles but does not display a glossary.

\documentclass[11pt]{scrartcl}
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{12345}
{
name=12345,
description={My favorite numbers}
}

\title{} \author{} \date{} \usepackage{blindtext}

\begin{document} \blindtext[20] \clearpage \printglossary[title=Special Terms, toctitle=List of terms] \end{document}

Tried to follow the instructions here: Formatting for glossaries but no luck. What am I doing wrong?

user26732
  • 1,785
  • 2
  • 22
  • 35
  • At first you need to use the term, e.g. with \gls. – Ulrike Fischer Sep 05 '23 at 06:41
  • Also I think you have to change \makeglossaries to \makenoidxglossaries and \printglossary to \printnoidxglossary. You are trying to use an option without indices. It should work after changes, although that is not a recommended option (see Indexing Options in the dcumentation for more info). – Celdor Sep 05 '23 at 06:56

0 Answers0