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 ???
why do you use \chapter* to format the title for the nomenclature section? The \printnomenclature command by default typesets the title "Nomenclature"; you can change that name using
Yes, the [intoc] option was the detail I was missing. Once I added [intoc] then the entire section took on the correct formatting and I was able to include the \printnomenclature as a stand alone chapter. Thanks!