需要有关使用 glossaries-extra 包 (Texpad, MacOS) 的帮助

需要有关使用 glossaries-extra 包 (Texpad, MacOS) 的帮助

我正在尝试按照我大学的模板撰写论文,但在制作“术语”和“符号”列表时遇到了麻烦。我可以成功制作“词汇表”和“缩写”列表,但出于某种原因,我无法使前两个列表正常工作。我在应该有术语和符号列表的每个页面上都收到以下消息:

错误信息。

我查看了 .nomenclature-glo 文件,发现其中有一个条目(与有效的列表一样)。.symbols-glo 文件也是如此。我已确保“glossaries-extra”包是我的发行版的一部分并且已安装。据我所知,这不是问题,因为缩写列表正在运行(它也是 extras 包的一部分)。我在 MacOS 上使用 Texpad,并尝试了以下设置:

Texpad 设置。

默认情况下(当我打开自动感应时),只启用“词汇表”。但是,更改此设置也无济于事。我还注意到,Texpad 在我的文档中只识别了两个索引运行,而我认为应该有四个: 索引的数量。

我尝试搜索了所有地方来查找这个问题,但没能找到另一个有类似问题的帖子。任何帮助都将不胜感激!这是我正在使用的代码:

% Define Glossary terms (This is properly done here, in the preamble. Could be \input{} from a file...)
% Main glossary entries -- definitions of relevant terminology
\newglossaryentry{computer}
{
name=computer,
description={A programmable machine that receives input data,
               stores and manipulates the data, and provides
               formatted output}
}

% Nomenclature glossary entries -- New definitions, or unusual terminology
\newglossary*{nomenclature}{Nomenclature}
\newglossaryentry{dingledorf}
{
type=nomenclature,
name=dingledorf,
description={A person of supposed average intelligence who makes incredibly brainless misjudgments}
}

% List of Abbreviations (abbreviations type is built in to the glossaries-extra package)
\newabbreviation{aaaaz}{AAAAZ}{American Association of Amature Astronomers and Zoologists}

% List of Symbols
\newglossary*{symbols}{List of Symbols}
\newglossaryentry{rvec}
{
name={$\mathbf{v}$},
sort={label},
type=symbols,
description={Random vector: a location in n-dimensional Cartesian space, where each dimensional component is determined by a random process}
}

\makeglossaries

相关内容