Someone mentioned in
How to create glossary entries for custom notation with arguments?
that the nomencl package can do almost what I want the glossaries package to do. Has someone used this package recently? I can't figure out how to make it work.
Compiling the following code with latexmk -pdf creates a file thest.nlo, but then complains about a missing test.nls file.
\documentclass[11pt]{report}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\section{A test section}
\label{lab.test.section}
\nomenclature{$\bigcap$}{Unary intersection operator. Section~\ref{lab.test.section}, page~\pageref{lab.test.section}.}
If $V$ is a set of subsets of $U$, then we define the unary
$\bigcap$ operator as follows...
\appendix
\chapter{Test chapter}
\printnomenclature
\end{document}
And the documentation https://www.sharelatex.com/learn/Nomenclatures doesn't seem to mention needing to run any external program.
I took a look at How to compile \nomencl in order to have a list of abbreviation? But when I try to run
makeindex test.nlo -s test.ist -o test.nls
I get an error: Index style file test.ist not found.
makeindex test.nlo -s nomencl.ist -o test.nlsinstead. Then run pdflatex ontest.texagain – Troy Jul 12 '18 at 13:09nomencl.ist, nottest.ist. – Troy Jul 12 '18 at 13:21