[Tex/LaTex] Appendix list of symbols

appendicesglossaries

I am trying to make a list of variable definitions in the appendix and I tried making glossaries and using acronyms packages but I don't know what to do. I do not need to reference the symbols in the text, just make a list with a variable and its definition as so:

List of Variables:

m The mass of the object

λ The absolute value of the displacement

Best Answer

Late, but still of use: A solution with glossaries package.

\documentclass{article}
\usepackage{bm}
\usepackage[toc,symbols]{glossaries}

\newglossaryentry{mass}{%
  name={\ensuremath{m}},
  description={The mass of the object},
  type=symbols
}

\newglossaryentry{disp}{%
  name={\ensuremath{\bm\lambda}},
  description={The absolute displacement},
  type=symbols
}


\makeglossaries


\begin{document}
\section{Normal section}
The \gls{mass} of the Sun can be determined by the centripetal force being given by the gravitional force and the orbiting period of the Earth. 

The \gls{disp} can not be used alone for determing the solar mass. 



\appendix
\printglossary[numberedsection,type=symbols,style=list,nogroupskip]

\end{document}

enter image description here

Update

\documentclass{article}
\usepackage{bm}
\usepackage[toc,symbols,nomain]{glossaries}

\newcommand{\listofsymbolsname}{List of Symbols}

\newglossaryentry{mass}{%
  name={\ensuremath{m}},
  description={The mass of the object},
  type=symbols
}

\newglossaryentry{disp}{%
  name={\ensuremath{\bm\lambda}},
  description={The absolute displacement},
  type=symbols
}


\makeglossaries


\begin{document}
\section{Normal section}
The \gls{mass} of the Sun can be determined by the centripetal force being given by the gravitional force and the orbiting period of the Earth. 

The \gls{disp} can not be used alone for determing the solar mass. 



\appendix
\printglossary[title=\listofsymbolsname,type=symbols,style=list,nogroupskip]

\end{document}

enter image description here

Related Question