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?
\makeglossariesto\makenoidxglossariesand\printglossaryto\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