명명법이 인쇄되지 않습니다.

명명법이 인쇄되지 않습니다.

명명법을 구현하려고 하는데 인쇄되지 않습니다. 다른 관련 상황을 보았지만 일반적으로 명령을 올바르게 실행할 수 없기 때문입니다. 그러나 다음과 같은 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

대신에.

관련 정보