命名规则无法打印

命名规则无法打印

我正在尝试实现命名法,但它没有打印。我见过其他相关情况,但通常是因为他们无法正确执行命令,但是,我正确地将其用作 TeXMaker 命令,该命令说:

pdflatex -synctex=1 -interaction=nonstopmode %.tex|
makeindex %.nlo -s nomencl.ist -o %.els|
pdflatex -synctex=1 -interaction=nonstopmode %.tex|
"C:/Program Files/Adobe/Reader 11.0/Reader/AcroRd32.exe" %.pdf

我的 LaTeX 文件是手册中的演示文件nomencl(但有一些非常小的修改):

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel} % language modifications

\usepackage{nomencl}
\makenomenclature

\title{Nomencl}
\author{Yo}
\date\today

\begin{document}

\maketitle

\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}

文档运行正常,没有任何错误或警告,但仍然无法打印命名法。有什么帮助吗?

答案1

好的,抱歉,我实际上已经找到了我自己的问题的答案,当我执行时它有效

makeindex %.nlo -s nomencl.ist -o %.nls -t %.nlg

反而。

相关内容