I am trying to make two glossary lists, one with acronyms and one with abbreviation. I have followed the guide on http://en.wikibooks.org/wiki/LaTeX/Glossary but replaced include{} with input{}. In Texstudio I get the error message "could not start the command: pdflatex.exe..". In Texworks it runs without error message but does not display the list.
The setup In preamble:
\usepackage[acronym,xindy]{glossaries} % nomain,
\makeglossaries
\begin{document}
\input{Acronyms.tex}
In Acronyms.tex
\newacronym{pmw}{PMW}{Passive microwave imager}
\newglossaryentry{qobs}{name = $Q_{obs,t}$ , description = Observed discharge}
In master document
\printglossary[type=\acronymtype,title=Abbreviations]
\printglossary[title=Acronyms]
In tex document I refer to the abbreviation like
\gls{pmw}
Is there an easier way to make an abbreviation or acronym list?
\documentclass{...}and ending with\end{document}. Instead of\include{Acronyms}add some entries of this file. Especially somewhere in your code mustgpccexist. – Speravir Feb 25 '14 at 16:54includeto input the file containing your definitions. See Why shouldn't I use \include to include my glossary definitions? – Nicola Talbot Feb 25 '14 at 17:12makeglossariesafterpdflatex? – Nicola Talbot Feb 27 '14 at 12:04