
命名法を実装しようとしていますが、印刷されません。他の関連する状況を見たことがありますが、通常はコマンドを正しく実行できないためです。ただし、私は次のように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
その代わり。