As a new LaTeX user, I have spent some time configuring my system and ironing the usual start-up mistakes. So far, I've been able to compile several documents with indices, graphics, etc. but now I'm trying to add a glossary and I'm absolutely and deeply confused.
I seem unable to make the \glossaries (with xindy) package work on my TexStudio/Windows 8 - MikTeX 2.9 machine so any help or orientation will be much appreciated.
Update:
Xindy seems to be working, now the question is WHAT TO DO NEXT

Now I am trying this MWE:
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[xindy]{glossaries}
\author{author}
\title{title}
\begin{document}
test la \gls{IG} es vital en la protección del ternero hay 5 tipos de \glspl{IG}
\newacronym[longplural=Inmunoglobulinas]{IG}{IG}{Inmunoglobulina}
\makeglossaries
\end{document}
and the errors on my build result are
on pdfLaTeX
line 21: Can be used only in preamble. \makeglossaries
: \makeglossaries hasn't been used,the glossaries will not be updated.
: No \printglossary or \printglossaries found.on Makeglossaries command
Process started: "C:/Program Files (x86)/MiKTeX 2.9/miktex/bin/makeglossaries.exe" "texstudio_B11540"makeglossaries version 2.12 (2014-01-20)added glossary type 'main' (glg,gls,glo)No \@istfilename found in 'texstudio_B11540.aux'. Did your LaTeX run fail? Did your LaTeX run produce any output? Did you remember to use \makeglossaries?Process exited with error(s)
What Finally Worked
I followed this path:
- Installed MiKTeX latest version and updated it
- Downloaded
xindy-win.exeand installed it with all the default options - Configured TeXstudio as per Khumar's indications with one difference: On
Options>Configure...>Commands-Texindyi used"C:/Program Files (x86)/xindy/miktex/bin/texindy.exe" %.idx
and now seems to be working!





xindyandglossaries? Doesglossarieswork withoutxindy? Is TeXstudio configured to runmakeindex,makeglossaries, or what? – Mike Renfro Jan 28 '14 at 00:37xindywith MiKTeX. – Speravir Jan 28 '14 at 00:50echo %path%? Does show this the whole system path, as it should be? – Speravir Jan 28 '14 at 18:07