I am writing my master thesis. When I compile and run the Tex file on Ubuntu everything works fine. When I do it on OSX and Windows it return the error:
Package glossaries Error: Glossary entry `...' has not been defined.
for all the \gls{} entries inserted.
I do follow the procedure for makeindex from the console. (makeindex main_body.glo -s main_body.ist -t main_body.glg -o main_body.gls).
Any hints? thank you in advance.
Minimal Working Example
\documentclass[11pt,a4paper,bibtotoc,idxtotoc,headsepline,footsepline,
footexclude,BCOR12mm,DIV13]{scrbook}
\input{components/info}
% include settings
\input{components/settings}
% include commands
\input{components/commands}
\makeindex
\makeglossary
\begin{document}
\frontmatter
\input{components/cover}
\clearemptydoublepage
\input{components/titlepage}
\input{components/abstract}
\tableofcontents
\input{components/outline}
\part[Introduction, Motivation and Backdrop]{Introduction, Motivation and Backdrop}
\part[Handbook and its Application]{Handbook and its Application}
\part*{Appendix}
\addcontentsline{toc}{part}{Appendix}
\input{chapters/7_Glossary/Acronyms}
\input{chapters/7_Glossary/Glossary}
\glsaddall
\printglossaries
\addcontentsline{toc}{chapter}{Glossary and Acronyms}
\clearemptydoublepage
\bibliography{bibliography/literature}
\end{document}
makeglossaries main_bodyin your console (http://tex.stackexchange.com/q/25950). Please make sure that you run LaTeX or alike before and that all needed files get created. In order to get better help, you should post an MWE here. The smalles possible example code, which yields this error for you. – LaRiFaRi Jun 23 '14 at 09:20glossariesinstalled on the different operating systems, but without a minimal working example (MWE) it's difficult to say for certain. – Nicola Talbot Jun 23 '14 at 09:57