I have my glossaries in glossary.tex
I always input them to the main.tex then /makeglossaries and then /printglossaries
I am using atom IDE on windows. When I run the latex compilation, I cannot see glossaries in the resulting pdf file even when I used them.
Here is the code of the main file:
\documentclass[11pt,
a4paper,
index=totoc,
headsepline,
footsepline,
BCOR=12mm,
DIV=13]{scrbook}
\input{components/info}
\input{components/settings}
\input{components/commands}
\input{components/glossary}
\makeglossary
\begin{document}
\frontmatter
\input{components/cover}
\clearemptydoublepage
\input{components/titlepage}
\input{components/disclaimer}
\input{components/acknowledgements}
\input{components/quote}
\input{components/abstract}
\tableofcontents
\mainmatter
\input{components/text}
\clearemptydoublepage
\printglossaries
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{bibliography/literature}
\end{document}
Do you have any clues what can fix the problem?
Missing input file: 'main.gls'. How did you define your glossaries ? Could you put a MWE ? – PTRK Jul 27 '17 at 09:03\printglossaries-like command in your code? – Troy Jul 28 '17 at 04:38\inputfiles which we have no access to. Make it into a minimal working example (MWE).. Meanwhile, is yourlatexmkconfigured to runmakeglossaries? See: https://tex.stackexchange.com/q/1226/117534 (disclaimer: i don't use latexmk myself..) – Troy Jul 28 '17 at 07:24mwe-gls.tex, which is a MWE supplied with theglossariespackage. Do you get a glossary with that? If not, try with\usepackage[automake]{glossaries}. – Nicola Talbot Jul 29 '17 at 13:34