I've placed
\usepackage{glossaries}
\makeglossaries
just before
\begin{document}
as recommended in my preamble. After the main part of my paper I've placed
\newpage
\printglossaries
\newpage
before
\bibliographystyle{ecta}
\bibliography{references}
\end{document}
But the glossary won't appear. Here is what I do:
- Run
LaTeXto load my document - Run
BibTexto load my bibliography - Run
LaTeXto generate citations and references
Before 3. I tried to run MakeIndex but then I got the following message:
Couldn't find input index file MainV2 nor MainV2.idx.
Usage: makeindex [-ilqrcgLT] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 ...]
What do I do wrong?
I use TeXShop Version 2.43 on Mac OS 10.7., if that matters.
makeindex -s MainV2.ist -t MainV2.glg -o MainV2.gls MainV2.glo(or simplymakeglossaries MainV2if makeglossaries is available in your system) and finally run (pdf)latex again. – Gonzalo Medina Mar 23 '12 at 2:45