I need to add a glossary to my document, I've been following the instructions of the manual but I cannot get it in my pdf.
The document has the following structure.
Code: Select all
\documentclass[12,twoside]{report}
\usepackage[english]{babel}
\usepackage[acronym]{glossaries}
\makeglossaries
\newacronym{lfs}{LFS}{Labour Force Survey}
\begin{document}
\input{title.tex}
\pagenumbering{roman}
\input{abstract}
\tableofcontents
\listoffigures
\listoftables
\printglossaries
\input{introduction}
\pagenumbering{arabic}
\input{Chapter1.tex}
\bibliography{References.bib}
\bibliographystyle{plain}
\end{document}
\gls{lfs}
. Then I proceed as follows.- I compile the file with the
latex
(orpdflatex
) - Run MakeIndex on the file.
- I repeat step 1.
I use TeXstudio under Lubuntu, and the Perl packages (Perltex) is installed.
Any suggestion?
Thank you in advance.
H.