-
Notifications
You must be signed in to change notification settings - Fork 209
插入术语表
Yu Hao edited this page Feb 13, 2019
·
2 revisions
首先,在导言区域加入
\usepackage{nomencl}
\renewcommand{\nomname}{术语表} % 这里改成你想要的名字,比如 中英文对照表、符号表
\makenomenclature % 这句话我也不知道是干什么用的
之后,在需要插入术语表的地方,写上一句
\printnomenclature
其余要做的就是在正文中出现需要解释的东西的时候,这样写
……猫和老鼠(Tom and Jerry)\nomenclature{猫和老鼠}{Tom and Jerry}是一部米高梅(Metro-Goldwyn-Mayer)\nomenclature{米高梅}{Metro-Goldwyn-Mayer}出品的经典动画片。
和蔼可亲的爱因斯坦老人家提出了著名的质能转换公式: $E=mc^2$ 。
\nomenclature{$E$}{能量}
\nomenclature{$m$}{质量}
\nomenclature{$c$}{光速}
最后,在编译的时候,将这个步骤插入到编译的第二步:
makeindex <filename>.nlo -s nomencl.ist -o <filename>.nls
这里有一个BUG,插入的术语表不会在目录中显示。