I spent my morning trying to solve this problem and reading those previous questions
makeglossaries call to xindy failed
How to configure TexStudio editor to use Xindy?
But the generation of my glossary with the glossaries package still fails.
I've figured out that if I open a terminal from TeXStudio it cannot find xindy
But if I manually open a Terminal I can manually compile my document :
And then I can run pdflatex again and the glossary works.
Here are my options inside TeXStudio :
Here's my MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[xindy]{glossaries}
\makeglossaries
\newglossaryentry{latex}
{
name=latex,
description={Is a mark up language specially suited
for scientific documents}
}
\newglossaryentry{maths}
{
name=mathematics,
description={Mathematics is what mathematicians do}
}
\begin{document}
The \Gls{latex} typesetting markup language is specially suitable
for documents that include \gls{maths}.
\printglossaries
\end{document}
P.S. : I've uninstalled and reinstalled Perl, MikTeX as well as TeXStudio just to make sure that it wasn't a version issue.
I realize this problem is very similar to the questions posted above but I don't know what I can do at this point.
Thanks.







"C:/Program Files/MiKTeX 2.9/miktex/bin/x64/texindy.exe" %.idx? – Luc Rebillout Jan 17 '17 at 19:38