\usepackage{nomencl}术语表分类如何设置

2020-03-26 14:49发布

各位老师好!我想想下图一样生成术语表(分类为变量、常数、集合等等)s ![](https://img2020.cnblogs.com/blog/1958254/202003/1958254-20200...

各位老师好!我想想下图一样生成术语表(分类为变量、常数、集合等等)s ![](https://img2020.cnblogs.com/blog/1958254/202003/1958254-20200326144759208-1443663433.png) 但是目前只找到直接生成术语表的方法,如图2所示。 ![](https://img2020.cnblogs.com/blog/1958254/202003/1958254-20200326141318247-1189820849.png) (各方面编译什么的都正常,只是想再优化一下) 这是对应图2的代码 请教各位! ``` \printnomenclature%放在想输出术语表的地方,一般是段首 \section*{Main equations} \begin{equation} a=\frac{N}{A} \end{equation}% \nomenclature[set]{$a$}{The number of angels per unit area}% \nomenclature[set]{$N$}{The number of angels per needle point}% \nomenclature[2]{$A$}{The area of the needle point}% The equation $sigma = m a$% \nomenclature{$sigma$}{The total mass of angels per unit area}% \nomenclature{$m$}{The mass of one angel} follows easily. ```