MakeIndex, Nomenclature, Glossaries and AcronymsWhere to create makeindex code?

Information and discussion about MakeIndex - the tool to generate subject indices for LaTeX documents.
Post Reply
tekkerchrede
Posts: 3
Joined: Sun Jan 17, 2010 7:16 pm

Where to create makeindex code?

Post by tekkerchrede »

Hi,

I would like to make a nomenclature with units, designations etc. for my diploma (bachelor) thesis. However I have trouble in figuring out how to perform this command line task in Windows:

Code: Select all

makeindex hfilenamei.nlo -s nomencl.ist -o hfilenamei.nls
from http://mirrors.dotsrc.org/ctan/macros/l ... omencl.pdf, page 2.

Despite several attemtps with google, I still haven't found a way to compile a nomenclature. Ending up with an error telling me of filename extensions, I assume the error is related to the above mentioned line of code.

After reading this topic http://www.latex-community.org/forum/vi ... ake#p23813 (Nomenclature error), I now get this message instead:

Code: Select all

Process started

This is makeindex, version 2.14 [02-Oct-2002] (kpathsea + Thai support).
Scanning input file Rapport.idx...done (0 entries accepted, 0 rejected).
Nothing written in Rapport.ind. Transcript written in Rapport.ilg.

Process exited normally
I use MikTex 2.8 and Texmaker on Windows XP.

Hope someone can help. Thanks in advance.

Recommended reading 2024:

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

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

tekkerchrede
Posts: 3
Joined: Sun Jan 17, 2010 7:16 pm

Where to create makeindex code?

Post by tekkerchrede »

Well, finally I sorted it out. However I would like to have a listing containing the symbol, unit and the description. For now, it is with the unit to the (far) right. I use the code below. Can anyone btw tell me, why the pagelayout isn't applied to the first page, when it works for the toc and list of figures.

Regards

Code: Select all

\usepackage[intoc]{nomencl}
\makenomenclature

\makepagestyle{symbolliste}
\makeevenhead{symbolliste}{\includegraphics[scale=0.45]{logo}}{\sffamily id-code}{\sffamily Name}
\makeoddhead{symbolliste}{\includegraphics[scale=0.45]{logo}}{\sffamily id-code}{\sffamily Name}
\makeevenfoot{symbolliste}{\sffamily Symbolliste}{\sffamily Title}{\sffamily \thepage}
\makeoddfoot{symbolliste}{\sffamily Symbolliste}{\sffamily Title}{\sffamily \thepage}
\makeheadrule{symbolliste}{\textwidth}{0.4pt}
\makefootrule{symbolliste}{\textwidth}{0.4pt}{2 mm}


\begin{document}
\frontmatter
\pagestyle{toc}
\tableofcontents
\pagebreak
\pagestyle{figures}
\listoffigures
\pagebreak
\pagestyle{symbolliste}
\printnomenclature
\mainmatter
\backmatter
\end{document}
Post Reply