Relatively new to latex and I'm using the nomenclature package. I can run it correctly, but am having a problem with a formatting issue. I would like the nomenclature list to be listed directly below the title of that chapter that is printed by \chapter*{list of abbreviations} printed at the top of the page. How do I remove the blank page reliably, without resorting to \vspace ???
Code: Select all
\documentclass[12pt,oneside]{thesisclass}
\usepackage{nomencl}
\renewcommand{\nomname}{}
\usepackage{makeidx}
\makenomenclature
\begin{document}
\prelimpages
\chapter*{List of Abbreviations}
\addcontentsline{toc}{chapter}{List of Abbreviations}
\printnomenclature[1in]
% text pages
\end{document}