I am using the following very simple programme which is an example of the glossary package:
Code: Select all
\documentclass[a4paper]{article}
\usepackage[style=long4colheader]{glossaries}
\makeglossaries
\newglossaryentry{w}{name={$w$},
sort=w,
description={width},
symbol=m}
\newglossaryentry{M}{name={$M$},
sort=M,
description={mass},
symbol={kg}}
\begin{document}
\printglossaries
The width, \gls{w}, is measured in meters. The mass, \gls{M} is
measured in kilograms.
\end{document}
My problem is that the glossary does not appear after compiling it, whereas if I enter ind the MS-Dos window:
latex filename.tex
makeglossaries filename
latex filename.tex
the filename.dvi contains the glossary.
I wanted to integrate it to TeXnicCenter as follows:
[img=http://img228.imageshack.us/img228/395/makeglossariesqu0.th.jpg]
but after compiling it without error, I don't get the glossary!
and I tried this for the different profiles:
LateX=>DVI
LateX=>PDF
LateX=>PS
LateX=>PS=>PDF
somebody told me to check the makeindex transcript file (.glg) for errors.
but I don't get any glg file.
Does somebody knows what is wrong with my configuration?
Thank you in advance for your answer!
JB