I have a two-page nomenclature list in my document and i want to print it without a page number. I have googled that \thispagestyle{empty} after \printnomenclature (former \printglossary) should do the trick. Well it does, but only when the nomenclature list is one page long. When it exceeds one page I still get the page number on the first page of nomenclature list.
Is there anyone who faced that? Any ideas for a workaround? It's tiny but really annoying detail, and it's the second day I am looking for a way to solve it.. Below is an example code:
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage[refpage]{nomencl}%http://franz.kollmann.in/latex/latex.html#abbr
\makenomenclature
\begin{document}
\pagestyle{empty}
The following Nomenclature does have a page number on first page!
\printnomenclature\thispagestyle{empty}
\chapter{Some chapter}\thispagestyle{empty}
This chapter has no page number, as expected\\
aa \nomenclature{a}{b}
aa \nomenclature{a2}{f}
aa \nomenclature{a3}{b}
aa \nomenclature{a4}{b}
aa \nomenclature{a5}{b}
aa \nomenclature{a6}{b}
aa \nomenclature{a7}{b}
aa \nomenclature{a8}{b}
aa \nomenclature{a9}{b}
aa \nomenclature{a10}{b}
aa \nomenclature{a11}{b}
aa \nomenclature{a12}{b}
aa \nomenclature{a13}{b}
aa \nomenclature{a15}{b}
aa \nomenclature{a14}{b}
aa \nomenclature{a16}{b}
aa \nomenclature{a17}{b}
aa \nomenclature{a18}{b}
aa \nomenclature{a19}{b}
aa \nomenclature{a20}{b}
aa \nomenclature{a21}{b}
aa \nomenclature{a22}{b}
aa \nomenclature{a23}{b}
aa \nomenclature{a25}{b}
aa \nomenclature{a24}{b}
aa \nomenclature{a26}{b}
aa \nomenclature{a27}{b}
aa \nomenclature{a28}{b}
aa \nomenclature{a29}{b}
aa \nomenclature{a30}{b}
\end{document}