[Tex/LaTex] How to i get the abbreviations as list in Appendix page

glossariesnomenclature

A possible list of terms, abbreviations and variable names with brief explanations has to be placed after the table of contents. If any term is explained in the list of terms, it is supposed to be used in the chapter text where it is used the first time. Is that possible in latex? If so which package can help me to do that. This MsWord screen shot is a good example..
enter image description here
thanks in advance..

Best Answer

The glossaries package allows glossaries as well as lists of acronyms. Here's a full example (note: compile it with pdflatex <myfile> makeglossaries <myfile> pdflatex <myfile>):

\documentclass{article}

\usepackage[acronym]{glossaries}
\makeglossaries

\newglossaryentry{electrolyte}{name=electrolyte,%
    description={solution able to conduct electric current}}

\newacronym{svm}{SVM}{support vector machine}

\textheight=180pt% just for the example

\begin{document}

Some text about \gls{svm}.

Some more text about \gls{svm}.

Some text about \gls{electrolyte}.

Some more text about \gls{electrolyte}.

\printglossary[type=acronym]

\printglossary

\end{document}

enter image description here