I*m working on write my master thesis. I'm writing using the university format but I have faced a problem in writing the abbreviations using nomencl package. I'm working on Windows Vista with TeXnicCenter (TXC) editor.
I*m calling all chapters of thesis from one file with
\include
command. I am focused here on the use of abbreviations. The main file is this.Code: Select all
\documentclass[ms,12pt]{thesis_format}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines margins and text width
\include{def}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the settings for including List of Abbreviations
\include{set_loa}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the inclusion of packages and some other required commands
\include{setting}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the title, author, advisers etc.
\include{title}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file creates 2 blank pages
\include{blanks}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the dedication page
\include{dedication}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the acknowledgments
\include{ack}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{preamble}
% The following file defines the list of abbreviations
\include{loa}
% The following file defines the Thesis abstract
\include{abstract}
\end{preamble}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following file defines the contents of Chapter One of the Thesis
\include{ch01}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Code: Select all
\usepackage{nomencl}
%
\makenomenclature
%
\renewcommand{\nomname}{List of abbreviations}
Code: Select all
\addcontentsline{toc}{chapter}{\, \, \, LIST OF ABBREVIATIONS}{\pageref{loa}}
%
\label{LOA}
\nomenclature{LED}{Light Emitting Diode}
\nomenclature{MOS}{Metal Oxide Semiconductor}
\nomenclature{PC}{Personal Computer}
%
\printnomenclature [2.5 cm]
Your help is highly appreciated