borisveytsman / nomencl

The nomenclature package can be used to generate and format a nomenclature using MakeIndex.
http://ctan.org/pkg/nomencl
8 stars 1 forks source link

\printnomenclature prints nothing with the nomentbl style #7

Closed cgnieder closed 5 years ago

cgnieder commented 5 years ago

This MWE

\documentclass{article}

\usepackage[nomentbl]{nomencl}
\makenomenclature

\begin{document}

\nomenclature{A}{ABC}{}{}
\nomenclature{B}{BCD}{}{}

\printnomenclature

\end{document}

produces no pages of output.

borisveytsman commented 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}