ドキュメントに頭字語のリストが表示されない

ドキュメントに頭字語のリストが表示されない

頭字語のリストを表示する例を定義しようとしました。しかし、コンパイル手順の後、ドキュメントには頭字語のリストなしでテキストのみが表示されます。

\documentclass{article}

% Load the package
\usepackage{glossaries}

% Generate the glossary
\makeglossaries

\begin{document}

%Term definitions
\newglossaryentry{utc}{name=UTC, description={Coordinated Universal Time}}
\newglossaryentry{adt}{name=ADT, description={Atlantic Daylight Time}}
\newglossaryentry{est}{name=EST, description={Eastern Standard Time}}

% Use the terms
\gls{utc} is 3 hours behind \gls{adt} and 10 hours ahead of \gls{est}.

%Print the glossary
\printglossaries

\end{document}

問題はどこだ?

関連情報