\makeglossaries を使用しても略語のリストが表示されない

\makeglossaries を使用しても略語のリストが表示されない

略語リストを文書に表示したいと思います。

glossary見つかったコードを使用していますここ略語のリストが表示されません。次の手順を実行しました。

  1. パールスクリプトをインストールしました。

  2. 次に、をダウンロードしてフォルダ名にmakeglossaries.bat配置し、そのフォルダをパスに配置しましたmakeglossaries.txtmakeglossariesC:\Users\mycomputer\makeglossaries

  3. 次に、makeglossaries.bat元のコマンドを に変更してファイルを修正しましたperl -S %makeglossaries_path%\makeglossaries "%~n1"

私はWinEdtを使用していますが、実行するとPDFLaTeXify警告が表示されます

Can't open pearl script "\makeglossaries": No such file or directory

.acnファイルは用語エントリを使用して作成されていることがわかります。

文書に略語リストを表示する方法を教えてください。

この問題に関する他の投稿も確認しましたが、解決策を見つけることができませんでした。

コードは次のとおりです:

\documentclass{article}
\usepackage{longtable}
\usepackage[acronym]{glossaries}

% abbreviations:
\newacronym{ny}{NY}{New York}
\newacronym{la}{LA}{Los Angeles}
\newacronym{un}{UN}{United Nations}

% nomenclature:
\newglossaryentry{angelsperarea}{
  name = $a$ ,
  description = The number of angels per unit area,
}
\newglossaryentry{numofangels}{
  name = $N$ ,
  description = The number of angels per needle point
}
\newglossaryentry{areaofneedle}{
  name = $A$ ,
  description = The area of the needle point
}

\makeglossaries
\begin{document}

\gls{ny}, \gls{la} and \gls{un} are abbreviations whereas
\gls{angelsperarea}, \gls{numofangels} and \gls{areaofneedle} are part of the
nomenclature

\printglossary[type=\acronymtype,title=Abbreviations]

\printglossary[title=Nomenclature]

\end{document} 

関連情報