Page LayoutRemove blank page before nomenclature

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
phoenix
Posts: 4
Joined: Sat Jul 25, 2009 1:06 am

Remove blank page before nomenclature

Post by phoenix »

Hi all,

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}

Recommended reading 2024:

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

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Remove blank page before nomenclature

Post by gmedina »

Hi,

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

Code: Select all

\renewcommand{\nomname}{The_new_name}
and using the intoc package option (i.e., with

Code: Select all

\usepackage[intoc]{nomencl}
) the nomenclature section will be automatically included in the table of contents.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
phoenix
Posts: 4
Joined: Sat Jul 25, 2009 1:06 am

Re: Remove blank page before nomenclature

Post by phoenix »

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!
Post Reply