我正在为我的 texnic 项目使用 nomencl 包,到目前为止运行良好。我使用 MikTex 2.9 和 TeXnic 1.0。
下面的代码在文档开头生成了我使用的名称表的列表,但不幸的是它们没有显示在我使用它们的文本中。
% Abkürzungsverzeichnis
\usepackage[intoc]{nomencl}
\let\abk\nomenclature
\renewcommand{\nomname}{Abkürzungsverzeichnis}
\setlength{\nomlabelwidth}{.20\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}\makenomenclature
%%%----------------------------------------------------------
\begin{document}
.....
\frontmatter
\maketitle
\include{abstract}
\tableofcontents
\printnomenclature
\abk{W3C}{World Wide Web Consortium}
\end{document}
abk 和 nomenclature as 命令都不起作用!W3C 只显示在列表中!有人有想法吗?谢谢转发!
答案1
这是\nomenclature
预期的工作方式:它向命名法列表中添加一些内容,但不会对正在运行的文本做任何事情(\index
以相同的方式工作)。