使用 Overleaf 但我的 Glossar 和 Acrynom 列表未显示

使用 Overleaf 但我的 Glossar 和 Acrynom 列表未显示

所以我有一个大学提供的模板,我用它来写论文。我为我的章节、文献、词汇表和缩写词分别创建了文件。除了词汇表和缩写词之外,我的所有文件都可以在我的主 .tex 上正确调用,但我一直收到以下错误 这个错误基本上在我章节中使用的每个词汇表命令中都会重复出现

\newglossaryentry{Backward Chaining}{
        name= backward chaining,
        description={eine Methode, die mit Zielen beginnt und rückwärts arbeitet, um festzustellen, welche Fakten behauptet werden müssen, damit die Ziele erreicht werden können.}
}

这是我拥有的词汇表输入的示例,以下代码是我的 main.text 代码

    \documentclass[
  a4paper,            % DIN A4
  DIV=10,             % Schriftgröße und Satzspiegel
  oneside,            % einseitiger Druck
  BCOR=5mm,           % Bindungskorrektur
  parskip=half,       % Halber Abstand zwischen Absätzen
  numbers=noenddot,   % Kein Punkt hinter Kapitelnummern
  bibtotoc,           % Literaturverzeichnis im Inhaltsverzeichnis
  listof=totoc        % Abbildungs- und Tabellenverzeichnis im Inhaltsverzeichnis
]{scrreprt}
\usepackage{../style/thesisstyle}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{glossaries}

\makeglossaries           % create all glossary entries (remember: run makeglossaries manually)
\loadglsentries{thesisglossaries.tex}  % load acronym, symbol and glossarie entries

\sisetup{locale = DE}     % siunitx locale setup
%\DeclareSIUnit \fps{fps}  % a custom unit (usage: \SI{24}{\fps})

\begin{document}
\input{configuration/configuration}    % load all settings

\hyphenation{Ba-che-lor-the-sis Mas-ter-the-sis}

% Cover page here, no page number
\ICoverPage

% PDF Metadata
\input{../style/metadata}

% Titlepage is page one even if the number is not shown.
\pagenumbering{roman}
% Title page here
\input{../style/titlepage}

% Abstract page here
\input{../style/abstractpage}

% Table of contents here
\tableofcontents

% List of figures here
\IListOfFigures

% List of tables here
\IListOfTables

% List of accronyms here
\IListOfAccronyms

% List of symbols here
\IListOfSymbols

% Uncomment if list of source code is needed (rarely).
%\lstlistoflistings  % requires package listings, needs to uncommenting of usepackage

% path to the chapters folder is set to find the images used there
\graphicspath{ {./chapters/} }

% Chapters
\clearpage
\pagenumbering{arabic}
\input{template_thesis/chapters/first_chapter/first_chapter}
\input{chapters/second_chapter}
\input{chapters/third_chapter}


% Add additional chapters here

%\bibliographystyle{plain}
\bibliographystyle{dinat}
\bibliography{literature}

% Appendix
\appendix
\input{appendix/example_appendix}

\IGlossary
\input{thesisglossaries.tex}

\Istatement

\end{document}

我还想提一下,它没有打印我在文本中使用词汇表定义的地方。我可以用我的代码编辑一些东西来修复词汇表和 acrynom 问题吗,因为这个错误一直在积累?

谢谢

答案1

首先,我要感谢您给我联系支持人员的想法!它解决了我的问题,有几个问题无法正常工作。一个是由于我的主文件应该位于所有文件夹之外,而我没有这样做;第二个是\newacronym{ai}{AI}{Artificial Intelligence}我在我的代码中写的\acrfull{AI},应该是acrfull{ai}因为 acrynom 基本上使用第一个关键字作为其标签,并且它区分大小写。只是想回来分享答案,以防您或其他人现在或将来感兴趣!

这两个错误是我词汇表正常运行的障碍

相关内容