您的位置首页生活百科

Latex Nomenclature 包添加术语表方法

Latex Nomenclature 包添加术语表方法

的有关信息介绍如下:

Latex Nomenclature 包添加术语表方法

在采用Latex撰写学术论文时,有时需要调用Nomenclature包进行术语表的生成。

添加示例文件或者将以下内容复制到空白的Tex文件中。

\documentclass{article}

\usepackage{nomencl}

\makenomenclature

\begin{document}

\section*{Main equations}

\begin{equation}

a=frac{N}{A}

\end{equation}%

\nomenclature{$a$}{The number of angels per unit area}%

\nomenclature{$N$}{The number of angels per needle point}%

\nomenclature{$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.

\printnomenclature

\end{document}

在示例文件夹下打开命令窗口(Shift+鼠标右键),并输入下面命令,回车

latex .tex

会生成以下文件。

继续在当前的命令窗口输入下面命令,回车

makeindex .nlo -s nomencl.ist -o .nls

便会在文件目录下多出nls文件

再次对文档进行编译,仍在命令行中输入下面命令

latex .tex

回得到下图中所示的文档。