The glossaries and acronyms are not showing up at \printglossaries. Bear with me, as I hopefully sufficiently explain the structure. I'm using Windows 7 with Sublime Text 3 and MikTeX 2.9. I installed Perl manually and added it to path.
I'm having my document divided into multiple files:
main.tex (which I compile)
\documentclass{book} \input{header} \begin{document} \include{chapter} % ... \include{ending} \end{document}header.tex
% ... \usepackage[xindy={language=english,codepage=utf8},% acronym,nopostdot,description]{glossaries} \makeglossaries \glstoctrue \loadglsentries{<path_to_glossaries_file>} % ...chapter.tex (multiple of those) - inside I use the
\gls{<>}ending.tex
% ... \printglossaries \printglossaries[type=\acronymtype] % ...
In my glossaries file, I define the elements with both \newacronym{code}{acr}{desc} and \newglossaryentry{code}{name={},description={}}
I compile the main document with a LaTeXTools script invoking:
pdflatex
bibtex
perl makeglossaries
pdflatex
pdflatex
always with the main name as parameter.
I get the .acn, .glo and .xdy files produced, just the final list is not in the .pdf. So, what am I doing wrong?