符号列表和缩写列表

符号列表和缩写列表

由于我发现的所有与此事有关的问题都很旧而且没有什么帮助(如果我错了请纠正我,我在这件事上找不到任何有用的东西!)所以我要开始一个新问题。

正如标题所说,我想在我的文档中包含一个符号列表和一个缩写列表。为此,我想使用这个glossaries-extra包。灵感来自问题解答 我得到了一个可以正常工作的符号列表示例。到目前为止,我还得到了文档中显示的缩写列表,但不幸的是,我不知道如何正确地用内容填充它。

我的 MWE 是:

\documentclass{scrreprt}

\usepackage[symbols,abbreviations,nogroupskip,nonumberlist,sort=use]{glossaries-extra}

\makenoidxglossaries
\glstocfalse    % don't add the glossaries to the table of contents

\glsxtrnewsymbol[description={position}]{x}{\ensuremath{x}}
\glsxtrnewsymbol[description={velocity}]{v}{\ensuremath{v}}
\glsxtrnewsymbol[description={acceleration}]{a}{\ensuremath{a}}
\glsxtrnewsymbol[description={time}]{t}{\ensuremath{t}}
\glsxtrnewsymbol[description={force}]{F}{\ensuremath{F}}

\newglossaryentry{apc}{%
name={APC},%
description={antigeen-presenterende cel}%
type=abbreviations%
}

\begin{document}
\tableofcontents
\printnoidxglossary[type=symbols,style=long,title={List of Symbols}]
\printglossary[type=abbreviations,style=long,title={List of Abbreviations}]

\chapter{Symbols}
    Reference symbols: $\gls{F}$, $\gls{t}$, $\gls{x}$, $\gls{v}$, $\gls{a}$.
\chapter{Abbreviations}
    Here is some text, where we use \gls{apc}.

\end{document}

符号列表看起来很好:

在此处输入图片描述

缩写列表如下:

在此处输入图片描述

我的编辑器 (VSCode) 中的行\printglossary[type=abbreviations,style=long,title={List of Abbreviations}]被标记为有缺陷,Glossary缺少注释缩写。and the LaTeX Compiler Output has the error message软件包 glossaries-extra 警告:词汇表abbreviations' is missing on input line 23.

我目前仅使用lualatex-> LuaHBTeX,版本 1.17.0(TeX Live 2023)进行编译

稍后我将不得不使用lualatex -> biber -> lualatex

我认为我的主要问题是我不太了解整个软件包是如何工作的,而且软件包文档对我来说有点太复杂了……

相关内容