does anybody know how to make the first page of the abbreviation list have the page number? My abbrev. list is made of 3 pages and only the other two have the correct page numbering (roman). The first page is plain.
\documentclass[12pt, a4paper]{report}
\linespread{1.6}
\usepackage{natbib}
\usepackage{color}
\usepackage{geometry}
\geometry{includeheadfoot,
headheight=14pt,
left=4cm,
right=2cm,
top=2.5cm,
bottom=2.5cm}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage[intoc]{nomencl}
\makenomenclature
\usepackage{makeidx}
\makeindex
\usepackage{hyperref}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black}
\fancyhf{}
\fancyhead[C]{\thepage}
\pagestyle{fancy}
\fancypagestyle{plain}
\fancyhf{}
\fancyhead[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\nomname}{List of Abbreviations}
\begin{document}
\pagenumbering{gobble}
\urlstyle{same}
\title{} \author{Andrea Lagna} \date{}
\maketitle
\renewcommand{\abstractname}{}
\begin{abstract}
\end{abstract}
\chapter*{Acknowledgments}
\tableofcontents
\newpage
\cleardoublepage
\pagenumbering{roman}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\thispagestyle{fancy}
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\thispagestyle{fancy}
\printnomenclature
\thispagestyle{fancy}
\pagenumbering{arabic}
\chapter*{Introduction}\addcontentsline{toc}{chapter}{Introduction}
\thispagestyle{fancy}
\nomenclature{ILT}{I Like This}
\clearpage
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{apsr}
\bibliography{bibliothesis}
\end{document}

\nomenclature{...}entries in the file. they will cause a separate nomenclature file to be generated that will be read in by the\printnomenclaturecommand. however, a\thispagestyle{...}command isn't read in until after processing of the preceding command is complete, so if you have a multi-page list (of any kind -- contents, list of tables, nomenclature, ...) the page style will be applied only to the last page of that section. i may not be able to help with that, since i don't usenomencl, but other potential assistants will need the "improved" file. – barbara beeton Jan 6 at 13:49