GeneralNomenclature on multiple pages w/o page numbers

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
yuri
Posts: 6
Joined: Sat Apr 09, 2011 12:15 am

Nomenclature on multiple pages w/o page numbers

Post by yuri »

Hi,
I use the nomenc package to make an abreviation list. Because I've got more than 40 abviations the list is not located at a single page. I need to get this \printnomenclature generated list without the page numbering. I've tried many things but no luck so far.

The used documentclass is 'article' if it helps you.

I'm really sorry if I overlooked some trivial solution :?
Last edited by yuri on Sat Apr 09, 2011 12:23 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Nomenclature on multiple pages w/o page numbers

Post by localghost »

yuri wrote:[…] I've tried many things but no luck so far. […]
And why don't you just show us these things? [1]. At the moment my crystal ball is out of order. One possible remedy is to use an appropriate page style.

[1] View topic: Avoidable mistakes


Best regards and welcome to the board
Thorsten
yuri
Posts: 6
Joined: Sat Apr 09, 2011 12:15 am

Nomenclature on multiple pages w/o page numbers

Post by yuri »

Well,
mkay.

Code: Select all

\printnomenclature[2cm] 
\pagestyle{empty}
Results in all numbered but the last page.
It's exactly the same behaviour as in TOC.

My setup:

Code: Select all

\usepackage{lmodern}
\usepackage{cmap} 
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage[T1]{fontenc} 
\usepackage[czech]{babel}
\usepackage[a4paper,left=35mm,right=22mm,top=30mm,bottom=40mm]{geometry} 
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage[pdftex,bookmarks=true, unicode=true, colorlinks=true, linkcolor=black, pdftitle={"2010-2011"}, pdfauthor={"JL"}]{hyperref} % pdf pouziti
\usepackage{listings}
\usepackage{lastpage} 
\usepackage{hyperref} 
\usepackage{nomencl} 
\usepackage{makeidx} 
\usepackage{fancyhdr}

\renewcommand{\nomname}{Seznam použitých zkratek} 
\renewcommand{\nomentryend}{.} 
%\renewcommand{\nomlabel}[1]{\textbf{#1}}
\makenomenclature
Also I've browsed the nomenc package's doc w/o any success.

I've already solved the same TOC problem via:

Code: Select all

\tableofcontents 
\addtocontents{toc}{
\protect\thispagestyle{empty}} 
\thispagestyle{empty} 
\newpage
Thanks for your help.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Nomenclature on multiple pages w/o page numbers

Post by localghost »

yuri wrote:[…] My setup: […]
That is insufficient. See topic link in my last reply.
yuri
Posts: 6
Joined: Sat Apr 09, 2011 12:15 am

Nomenclature on multiple pages w/o page numbers

Post by yuri »

Ok.
Now it should be fully reproducible and clear. Pls don't mind the Czech commentaries.


Edit by localghost: Preferably no external links (see Board Rules). Attachments go onto the forum server where possible.
title.tex
the needed title.tex
(222 Bytes) Downloaded 378 times
Attachments
sample.tex
(2.68 KiB) Downloaded 456 times
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Nomenclature on multiple pages w/o page numbers

Post by localghost »

It works fine if you just swap the commands for the nomenclature and the page style.

Code: Select all

\pagestyle{empty}
\printnomenclature[2cm]
But you still have to learn what a minimal example is.
yuri
Posts: 6
Joined: Sat Apr 09, 2011 12:15 am

Re: Nomenclature on multiple pages w/o page numbers

Post by yuri »

Aww.
Thank you. I can't believe it was such a trivial fix. It seems I rly am a Tex newb.
Post Reply