Hi Stefan_K,
That's alright. I get it! It works fine!!!!!
I just needed to install Perl so that the command makeindex from my terminal works.
Also, I used the package glossary instead of glossaries, does it matter? Are they any important differences between these 2?
Cheers mate,
For people who wants to do a glossary by using the package glossary:
1°/
Code: Select all
\usepackage{glossary}
\makeglossary
2°/
Code: Select all
\glossary{name={entry name}, description={entry description}}
%Here is an example
\glossary{name={hello}, description={an expression of greeting}}
\glossary{name={animal}, description={a living organism characterized by voluntary movement}}
3°/ Then, you have to tell Latex where to place you glossary inside the document
4°/ Then, things get complicated
First, you need to download perl if you don't have it.
Then, open a terminal. On windows, go to your working directory containing your MyLatexDocument.tex
Type latex MyLatexDocument
Your doc is compiling, and the files MyLatexDocument.glo MyLatexDocument.ist MyLatexDocument.glg and MyLatexDocument.gls are created.
Type the command makeindex MyLatexDocument.glo -s MyLatexDocument.ist -t MyLatexDocument.glg -o MyLatexDocument.gls
Finally, compile again:
Type latex MyLatexDocument
Sydney.