smart way to add glossary in latex

In latex, glossary could be formatted by table. Here is a simple example. It is quite easy to extend with more items.

\renewcommand\arraystretch{1.5}

\newcommand{\myitem}[2] { \textbf{#1} & #2 \\}

\begin{table}[htbp]
\begin{tabular}{ll}
\myitem{SVM}{Support Vector Machine}
\end{tabular}%
\label{tab:Glossary}%
\end{table}%

posted on 2012-09-24 22:41  xueliangliu  阅读(322)  评论(0编辑  收藏  举报

导航