Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

\printnomenclature prints nothing with the nomentbl style #7

Closed
cgnieder opened this issue Nov 3, 2019 · 1 comment
Closed

\printnomenclature prints nothing with the nomentbl style #7

cgnieder opened this issue Nov 3, 2019 · 1 comment

Comments

@cgnieder
Copy link

cgnieder commented Nov 3, 2019

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
Copy link
Owner

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}


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants