문서에 약어 목록이 표시되지 않습니다.

문서에 약어 목록이 표시되지 않습니다.

약어 목록을 표시하는 예제를 정의하려고 했습니다. 그러나 컴파일 단계 후에 문서에는 약어 목록 없이 텍스트만 표시됩니다.

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

문제는 어디에 있습니까?

관련 정보