Closed cgnieder closed 5 years ago
Your document has zero pages in the body. \nomenclature
writes the entries when a page is shipped - which never happens.
This version works
\documentclass{article}
\usepackage[nomentbl]{nomencl}
\makenomenclature
\begin{document}
Some text
\nomenclature{A}{ABC}{}{}
\nomenclature{B}{BCD}{}{}
\clearpage
\printnomenclature
\end{document}
This MWE
produces no pages of output.