Consider the following LaTeX file (named test.tex
) demonstrating the use of the glossaries-extra
package.
\documentclass{article}
\usepackage[automake]{glossaries-extra}
\newglossaryentry{potato}{name={potato},description={potato}}
\makeglossaries
\begin{document}
\glsadd{potato}potahto
\printglossaries
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% TeX-engine: luatex
%%% End:
When I compile the document with C-c, C-a
, the following output results.
What do I need to do in order for the document to typeset properly?